/* ── VARIABLES ── */
:root {
  --beige-lightest: #fdf9f3;
  --beige-light: #f5ede0;
  --beige: #eee6de;
  --beige-dark: #cbb087;
  --beige--room-spaces: #e4d1b3;
  --purple-pale: #e8e0f0;
  --purple-soft: #9b7bb8;
  --purple: #7a5a9e;
  --purple-deep: #4a2d6f;
  --purple-darkest: #2a1340;
  --text-dark: #1e1020;
  --text-mid: #4a3558;
  --text-light: #f5ede0;
  --shadow: rgba(42, 19, 64, 0.15);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  scrollbar-gutter: stable;
}

html.modal-open,
html.lightbox-open {
  overflow: hidden !important;
  height: 100%;
}

html.modal-open body,
html.lightbox-open body,
body.modal-open,
body.lightbox-open {
  overflow: hidden !important;
  height: 100vh;
}

body {
  background: var(--beige);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
em {
  font-style: italic;
}
ul {
  list-style: none;
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s var(--ease-out),
    padding 0.4s,
    box-shadow 0.4s;
}

#navbar.scrolled {
  background: transparent;
  padding: 0.9rem 4rem;
  box-shadow: 0 2px 24px var(--shadow);
}

/* El backdrop-filter va en ::before para NO crear stacking context sobre los hijos */
#navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  backdrop-filter: none;
  transition:
    background 0.5s var(--ease-out),
    backdrop-filter 0.5s;
}

#navbar.scrolled::before {
  background: rgba(253, 249, 243, 0.97);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--beige-lightest);
  letter-spacing: 0.03em;
  transition: color 0.5s;
}

#navbar.scrolled .nav-logo {
  color: var(--purple-deep);
}

.nav-logo em {
  font-style: italic;
  color: var(--beige);
  transition: color 0.5s;
}
#navbar.scrolled .nav-logo em {
  color: var(--purple-soft);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-links.scrolled {
  /* solo para sincronía de clase, sin estilos extra en desktop */
}

.nav-close-item {
  display: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--beige);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--beige-lightest);
}

#navbar.scrolled .nav-links a {
  color: var(--text-mid);
}
#navbar.scrolled .nav-links a::after {
  background: var(--purple);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--purple-deep);
}

.nav-cta {
  background: var(--purple) !important;
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 40px;
  transition:
    background 0.3s,
    transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-deep) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--beige-lightest);
  transition:
    background 0.5s,
    transform 0.3s;
}

#navbar.scrolled .hamburger span {
  background: var(--purple-deep);
}

/* Hamburger → oculto cuando el menú está abierto */
.hamburger.is-open {
  opacity: 0;
  pointer-events: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(IMG_0348-2.jpg) center / cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(42, 19, 64, 0.5) 0%,
    rgba(74, 45, 111, 0.45) 50%,
    rgba(42, 19, 64, 0.521) 100%
  );
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 1;
  background: linear-gradient(
    to top,
    var(--purple-darkest) 0%,
    transparent 100%
  );
}

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

.hero-pretitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--beige-lightest);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--beige);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.8);
  letter-spacing: 0.06em;
  margin-bottom: 2.8rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--beige-dark);
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  transition:
    background 0.3s,
    transform 0.25s var(--ease-out),
    box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--beige-lightest);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 19, 64, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(245, 237, 224, 0.5);
  color: var(--beige-lightest);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.25s;
}

.btn-ghost:hover {
  background: rgba(245, 237, 224, 0.12);
  border-color: var(--beige-lightest);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 237, 224, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245, 237, 224, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.7);
    opacity: 1;
  }
}

.hero-badges {
  position: absolute;
  bottom: 2.8rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.badge {
  background: rgba(253, 249, 243, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 237, 224, 0.2);
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--beige-lightest);
}

.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige);
}

/* ── HERO ANIMATIONS — CSS puro, sin depender de JS ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-animate-1 {
  animation: heroFadeUp 0.9s var(--ease-out) 0.2s both;
}
.hero-animate-2 {
  animation: heroFadeUp 1s var(--ease-out) 0.38s both;
}
.hero-animate-3 {
  animation: heroFadeUp 0.9s var(--ease-out) 0.55s both;
}
.hero-animate-4 {
  animation: heroFadeUp 0.9s var(--ease-out) 0.7s both;
}
.hero-animate-5 {
  animation: heroFadeIn 1.2s var(--ease-out) 1s both;
}

/* ── MARQUEE ── */
.marquee-track {
  background: var(--purple-deep);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  color: var(--beige);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.marquee-inner span:not(:nth-child(even)) {
  color: var(--beige-dark);
}
.marquee-inner span:nth-child(even) {
  color: rgb(226, 196, 152);
  font-style: normal;
}

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

/* ── ABOUT ── */
#about {
  padding: 8rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-main {
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px var(--shadow);
}

.about-img-small {
  width: 220px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  border: 6px solid var(--beige-lightest);
  box-shadow: 0 16px 40px var(--shadow);
}

.about-text-col {
  padding-top: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--beige);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--purple-deep);
  margin-bottom: 1.6rem;
}

.section-subtitle.reveal-up {
  font-size: 1.2rem;
  color: var(--purple-deep);
}

.section-title.light {
  font-weight: 600;
  color: var(--beige--room-spaces);
}
.section-title em {
  font-weight: 400;
  font-style: italic;
  color: var(--purple-soft);
}
.section-title.light em {
  color: var(--beige);
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1;
}

.stat span {
  font-size: 0.85rem;
  color: var(--purple-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── ROOMS ── */
#rooms {
  background: var(--purple-deep);
  padding: 7rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.room-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 237, 224, 0.1);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* ── AMENITIES ── */
#amenities {
  padding: 7rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.amenity {
  background: var(--beige-light);
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  transition:
    background 0.3s,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
}

.amenity:hover {
  background: var(--purple-pale);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--purple-soft);
}

.amenity span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

/* ── REVIEWS ── */
#reviews {
  background: var(--purple-deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(122, 90, 158, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.review-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 24px;
  padding: 3rem;
  display: none;
  animation: fadeSlide 0.5s var(--ease-out);
}

.review-card.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-btn {
  background: rgba(245, 237, 224, 0.08);
  border: 1px solid rgba(245, 237, 224, 0.2);
  color: var(--beige-lightest);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  transition:
    background 0.3s,
    transform 0.2s;
}

.slider-btn:hover {
  background: rgba(245, 237, 224, 0.15);
  transform: scale(1.08);
}

/* ── LOCATION ── */
#location {
  padding: 8rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
  margin-top: 0.4rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.location-list li span:first-child {
  font-size: 1.1rem;
}

.location-map {
  background: var(--beige-light);
  border: 1px solid var(--beige);
  border-radius: 24px;
  height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── CONTACT ── */
#contact {
  background: var(--purple-darkest);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(122, 90, 158, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: rgba(245, 237, 224, 0.65);
  margin-bottom: 3rem;
  margin-top: 0.6rem;
}

.contact-subtitle em {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--beige-dark);
  margin-bottom: 3rem;
  margin-top: 0.6rem;
}

.booking-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.55);
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 237, 224, 0.15);
  color: var(--beige-lightest);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.form-group input::placeholder {
  color: rgba(245, 237, 224, 0.3);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple-soft);
  background: rgba(255, 255, 255, 0.09);
}

.form-group select option {
  background: var(--purple-deep);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.4);
}

.btn-submit {
  position: relative;
  margin-top: 0.6rem;
  background: var(--beige);
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border: none;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  transition:
    background 0.3s,
    transform 0.25s var(--ease-out),
    box-shadow 0.3s;
}

.btn-submit:hover {
  background: var(--beige-lightest);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}

.btn-submit:hover .btn-shine {
  left: 150%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.5s var(--ease-out);
}

.form-success.show {
  display: block;
}

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

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(245, 237, 224, 0.1);
  border: 2px solid var(--beige);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--beige-lightest);
  margin-bottom: 0.6rem;
}

.form-success p {
  color: rgba(245, 237, 224, 0.65);
  font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--purple-darkest);
  border-top: 1px solid rgba(245, 237, 224, 0.08);
  padding: 4rem 4rem 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 237, 224, 0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--beige-lightest);
  margin-bottom: 0.8rem;
}

.footer-logo em {
  font-style: italic;
  color: var(--beige);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.45);
}

.footer-bottom {
  text-align: center;
  padding: 1.4rem;
  font-size: 0.75rem;
  color: rgba(245, 237, 224, 0.25);
  letter-spacing: 0.08em;
}

/* ── ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.reveal-fade.in-view {
  opacity: 1;
}

.reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── DELAYS ── */
.delay-1 {
  transition-delay: 0.12s !important;
}
.delay-2 {
  transition-delay: 0.24s !important;
}
.delay-3 {
  transition-delay: 0.36s !important;
}
.delay-4 {
  transition-delay: 0.48s !important;
}

/* ── PARALLAX ── */
.parallax-img img {
  transform: none !important;
}
/* ── RESPONSIVE ── */

/* ── LANGUAGE SWITCHER ───────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245, 237, 224, 0.08);
  border: 1px solid rgba(245, 237, 224, 0.2);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  transition:
    background 0.25s,
    border-color 0.25s;
  order: 1;
  margin-right: 0.6rem;
}
.lang-switcher:hover {
  background: rgba(245, 237, 224, 0.15);
  border-color: rgba(245, 237, 224, 0.4);
}
.lang-opt {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(245, 237, 224, 0.45);
  transition: color 0.2s;
  line-height: 1;
}
.lang-opt.active {
  color: var(--beige-lightest);
  font-weight: 600;
}
.lang-divider {
  font-size: 0.6rem;
  color: rgba(245, 237, 224, 0.25);
  line-height: 1;
}

/* When scrolled navbar — adjust contrast */
#navbar.scrolled .lang-switcher {
  background: rgba(27, 10, 48, 0.6);
  border-color: rgba(245, 237, 224, 0.15);
}
#navbar.scrolled .lang-opt {
  color: rgba(245, 237, 224, 0.5);
}
#navbar.scrolled .lang-opt.active {
  color: var(--beige-lightest);
}
#navbar.scrolled .lang-divider {
  color: rgba(245, 237, 224, 0.3);
}

/* Transition for lang swap */
[data-es][data-en] {
  transition: opacity 0.18s ease;
}
[data-es][data-en].lang-fade {
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url(IMG_0352.jpg) center / cover no-repeat;
    will-change: transform;
  }

  .lang-switcher {
    margin-right: 0.3rem;
    padding: 0.28rem 0.6rem;
  }
  .lang-opt {
    font-size: 0.65rem;
  }
}

@media (max-width: 1024px) {
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .about-img-small {
    right: 1rem;
  }
  .about-img-main {
    height: 420px;
  }
  .hero-badges {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .am-cards {
    grid-template-columns: 1fr 1fr;
  }
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid-expanded {
    padding: 0 2rem;
  }
  .rooms-grid-bottom {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 1.2rem 1.6rem;
  }
  #navbar.scrolled {
    padding: 0.9rem 1.6rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 45, 46, 0.98);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    z-index: 1001;
    padding: 2rem;
  }

  .nav-close-item {
    display: flex !important;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: auto;
  }

  .nav-close-btn {
    background: rgba(245, 237, 224, 0.1);
    border: 1px solid rgba(245, 237, 224, 0.25);
    color: var(--beige-lightest);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition:
      background 0.3s,
      transform 0.25s;
  }
  .nav-close-btn:hover {
    background: rgba(245, 237, 224, 0.22);
    transform: rotate(90deg);
  }

  .nav-links.open a {
    font-size: 1.5rem !important;
    color: var(--beige-lightest) !important;
    letter-spacing: 0.05em;
  }

  #about,
  #rooms,
  #amenities,
  #reviews,
  #location,
  #contact,
  #gallery,
  #experiences,
  #pricing,
  #faq {
    padding: 3rem 1.8rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
  .section-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  #hero {
    height: 100svh;
    min-height: 560px;
  }
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }
  .hero-badges {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .rooms-grid-expanded {
    display: none !important;
  }
  .rooms-grid-bottom {
    display: none !important;
  }
  .amenity {
    padding: 1.2rem 1rem;
  }
  .amenity span {
    font-size: 0.75rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img-small {
    display: none;
  }

  /* FIX: sin parallax en móvil */
  .hero-bg {
    transform: none !important;
    background-attachment: scroll !important;
  }
  .parallax-img img {
    transform: none !important;
  }
  .about-img-small {
    display: none;
  }

  /* LIGHTBOX MÓVIL */
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }
  .lightbox-img-wrap img {
    max-height: 65vh;
  }

  /* AMENITIES MÓVIL */
  #amenities {
    padding: 3rem 1.8rem;
  }
  .am-inner {
    padding: 0;
    max-width: 100%;
  }
  .am-hero {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
    border-radius: 16px;
  }
  .am-hero-img {
    height: 220px;
  }
  .am-hero-content {
    padding: 1.6rem;
    gap: 0.8rem;
  }
  .am-hero-content h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  .am-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .am-card {
    padding: 1.4rem;
  }
  .am-features-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .am-feature {
    padding: 1.2rem;
  }
  .am-strip {
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
  }

  /* GALERÍA MÓVIL */
  .gallery-item.gi-tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

/* =====================================================
   ADDENDUM — NEW SECTIONS
   Rooms Expanded · Gallery · Experiences · Pricing · FAQ · Modal
   ===================================================== */

/* ── SECTION SUBTITLE ── */
.section-subtitle {
  font-size: 1rem;
  color: var(--beige-lightest);
  margin-top: -1rem;
  margin-bottom: 0;
}
.section-subtitle.light {
  color: rgba(245, 237, 224, 0.6);
}
/* ── ROOMS EXPANDED ── */
.rooms-grid-expanded {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
  align-items: start;
}

/* BIG CARD */
.room-card-xl {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 237, 224, 0.1);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}
.room-card-xl:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}
.room-card-xl:focus {
  outline: 2px solid var(--beige);
  outline-offset: 4px;
}

.room-img-xl {
  height: 380px;
  position: relative;
  overflow: hidden;
}
.room-img-xl img {
  transition: transform 0.7s var(--ease-out);
}
.room-card-xl:hover .room-img-xl img {
  transform: scale(1.05);
}

.room-overlay-xl {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 19, 64, 0.75) 0%,
    transparent 55%
  );
}

.room-badge-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(253, 249, 243, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 237, 224, 0.25);
  color: var(--beige-lightest);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

.room-price-tag {
  display: none !important;
}

.room-price-tag strong {
  font-weight: 600;
}

.room-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.room-body-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.7rem;
  gap: 1rem;
}
.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--beige-lightest);
}
.room-rating {
  font-size: 0.82rem;
  color: var(--beige-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.room-rating span {
  color: rgba(245, 237, 224, 0.4);
}

.room-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.65);
  margin-bottom: 1.4rem;
  height: 4.8rem;
  overflow: hidden;
}

.room-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.room-tags-list span {
  font-size: 0.73rem;
  padding: 0.28rem 0.75rem;
  background: rgba(245, 237, 224, 0.07);
  border: 1px solid rgba(245, 237, 224, 0.14);
  border-radius: 20px;
  color: var(--beige);
}

.room-detail-btn {
  background: none;
  border: 1px solid rgba(245, 237, 224, 0.25);
  color: var(--beige-lightest);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.2s;
  width: 100%;
  margin-top: auto;
}
.room-detail-btn:hover {
  background: rgba(245, 237, 224, 0.1);
  border-color: var(--beige);
  transform: translateX(4px);
}
.room-detail-btn span {
  transition: transform 0.3s;
  display: inline-block;
}
.room-detail-btn:hover span {
  transform: translateX(4px);
}

/* SMALL CARDS COL */
.rooms-col-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.room-card-sm {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 237, 224, 0.1);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}
.room-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.room-card-sm:focus {
  outline: 2px solid var(--beige);
  outline-offset: 4px;
}

.room-img-sm {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.room-img-sm img {
  transition: transform 0.7s var(--ease-out);
}
.room-card-sm:hover .room-img-sm img {
  transform: scale(1.06);
}

.room-body-sm {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.room-body-sm h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--beige-lightest);
}
.room-body-sm p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 0.9rem;
  height: 3.3rem;
  overflow: hidden;
}

/* BOTTOM ROW — mirrors rooms-grid-expanded layout */
.rooms-grid-bottom {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 0 4rem;
  align-items: start;
}

/* ROOMS SLIDER MOBILE */
.rooms-slider-mobile {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rooms-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.rooms-slider-track::-webkit-scrollbar {
  height: 4px;
}

.rooms-slider-track::-webkit-scrollbar-track {
  background: rgba(245, 237, 224, 0.05);
}

.rooms-slider-track::-webkit-scrollbar-thumb {
  background: rgba(245, 237, 224, 0.2);
  border-radius: 2px;
}

.rooms-slider-item {
  flex: 0 0 calc(100vw - 3rem);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 237, 224, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rooms-slider-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.rooms-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.rooms-slider-item:hover .rooms-slider-img img {
  transform: scale(1.05);
}

.rooms-slider-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(253, 249, 243, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 237, 224, 0.25);
  color: var(--beige-lightest);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.rooms-slider-price {
  display: none !important;
}

.rooms-slider-price strong {
  font-weight: 600;
}

.rooms-slider-body {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rooms-slider-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--beige-lightest);
  margin-bottom: 0.4rem;
}

.rooms-slider-rating {
  font-size: 0.75rem;
  color: var(--beige-dark);
  margin-bottom: 0.8rem;
}

.rooms-slider-rating span {
  color: rgba(245, 237, 224, 0.4);
}

.rooms-slider-body p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(245, 237, 224, 0.6);
  margin-bottom: 1rem;
  flex: 1;
}

.rooms-slider-btn {
  background: none;
  border: 1px solid rgba(245, 237, 224, 0.25);
  color: var(--beige-lightest);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.2s;
  width: 100%;
}

.rooms-slider-btn:hover {
  background: rgba(245, 237, 224, 0.1);
  border-color: var(--beige);
  transform: translateX(4px);
}

.rooms-slider-btn span {
  transition: transform 0.3s;
  display: inline-block;
}

.rooms-slider-btn:hover span {
  transform: translateX(4px);
}

.rooms-slider-btn-prev,
.rooms-slider-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(74, 45, 111, 0.7);
  border: 1px solid rgba(245, 237, 224, 0.2);
  color: var(--beige-lightest);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition:
    background 0.3s,
    transform 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-slider-btn-prev:hover,
.rooms-slider-btn-next:hover {
  background: rgba(245, 237, 224, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.rooms-slider-btn-prev {
  left: 1rem;
}

.rooms-slider-btn-next {
  right: 1rem;
}

/* FULL HOUSE CTA */
.full-house-cta {
  max-width: 1280px;
  margin: 5rem auto 0;
  padding: 0 4rem;
}
.full-house-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 237, 224, 0.15);
  border-radius: 20px;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.full-house-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--beige-lightest);
  margin-bottom: 0.3rem;
}

.full-house-inner p {
  font-size: 0.88rem;
  color: rgba(245, 237, 224, 0.6);
}

.full-house-inner p strong {
  color: var(--beige);
}

.full-house-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.full-house-price span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.5);
}
.full-house-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--beige-lightest);
}

/* ── GALLERY ── */
#gallery {
  padding: 7rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-grid {
  column-count: 3;
  column-gap: 0.5rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  break-inside: avoid;
  margin-bottom: 0.5rem;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.gi-tall {
  break-inside: avoid;
}

.gallery-item.gi-wide {
  break-inside: avoid;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(
    to top,
    rgba(42, 19, 64, 0.8) 0%,
    transparent 100%
  );
  color: var(--beige-lightest);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

/* ── GALLERY OVERLAY ── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 19, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 2rem;
  filter: brightness(10);
}

/* ── GALLERY SLIDER MOBILE ── */
.gallery-slider-mobile {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
  width: 100%;
}

.slider-item {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.slider-item:active img {
  transform: scale(1.05);
}

.slider-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s var(--ease-out);
  color: var(--purple-deep);
  font-weight: bold;
}

.slider-btn:active {
  background: rgba(255, 255, 255, 1);
  transform: scale(0.95);
}

.slider-btn:disabled {
  opacity: 0.3;
}

.gallery-grid-wrapper {
  display: block;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 5, 28, 0.97);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(245, 237, 224, 0.1);
  border: 1px solid rgba(245, 237, 224, 0.25);
  color: var(--beige-lightest);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  z-index: 10;
  transition:
    background 0.3s,
    transform 0.25s;
}
.lightbox-close:hover {
  background: rgba(245, 237, 224, 0.22);
  transform: rotate(90deg);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 237, 224, 0.1);
  border: 1px solid rgba(245, 237, 224, 0.2);
  color: var(--beige-lightest);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  transition:
    background 0.3s,
    transform 0.2s;
  z-index: 10;
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}
.lightbox-prev:hover {
  background: rgba(245, 237, 224, 0.2);
  transform: translateY(-50%) translateX(-3px);
}
.lightbox-next:hover {
  background: rgba(245, 237, 224, 0.2);
  transform: translateY(-50%) translateX(3px);
}
.lightbox-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--beige);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(42, 19, 64, 0.6);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.lightbox-counter {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 237, 224, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

/* ── AMENITIES NEW DESIGN ── */
#amenities {
  padding: 7rem 4rem;
  background: var(--beige);
}
.am-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Hero highlight */
.am-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: var(--purple-deep);
  margin-bottom: 3rem;
  box-shadow: 0 24px 64px var(--shadow);
}
.am-hero-img {
  height: auto;
  overflow: hidden;
}
.am-hero-img img {
  transition: transform 0.8s var(--ease-out);
}
.am-hero:hover .am-hero-img img {
  transform: scale(1.04);
}
.am-hero-content {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.am-hero-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--beige-lightest);
  line-height: 1.2;
}
.am-hero-content h3 em {
  font-style: italic;
  color: var(--beige);
}
.am-hero-sub {
  font-size: 0.8rem !important;
  font-style: italic;
  color: rgba(245, 237, 224, 0.4) !important;
  margin-top: -0.4rem !important;
  margin-bottom: 0 !important;
}

.am-hero-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 237, 224, 0.65);
}
.am-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.am-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--beige);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 237, 224, 0.1);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
}
.am-feature span {
  font-size: 1.1rem;
}

/* Amenity Cards */
.am-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.am-card {
  background: var(--beige-light);
  border: 1px solid var(--beige);
  border-radius: 22px;
  padding: 2.2rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s,
    border-color 0.3s;
}
.am-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: var(--purple-soft);
}
.am-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.am-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 0.7rem;
}
.am-card p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.am-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.am-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 1.1rem;
  position: relative;
}
.am-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--purple-soft);
  font-size: 0.7rem;
  top: 1px;
}

/* Amenity Strip */
.am-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.6rem 2rem;
  background: var(--purple-pale);
  border: 1px solid var(--beige);
  border-radius: 18px;
}

.am-strip h3 {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.6rem;
}

/* ── EXPERIENCES ── */
#experiences {
  background: var(--purple-deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.exp-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(122, 90, 158, 0.25) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.exp-card {
  border-radius: 20px;
  max-height: 700px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 237, 224, 0.1);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.exp-img {
  height: 400px;
  overflow: hidden;
}
.exp-img img {
  transition: transform 0.7s var(--ease-out);
}
.exp-card:hover .exp-img img {
  transform: scale(1.06);
}

.exp-info {
  padding: 1.4rem;
}

.exp-distance {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 0.6rem;
  background: rgba(201, 170, 132, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 170, 132, 0.2);
}

.exp-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--beige-lightest);
  margin-bottom: 0.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.exp-info p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(245, 237, 224, 0.6);
}

/* ── PRICING ── */
#pricing {
  padding: 7rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 2rem;
}

/* BOOKING CARDS */
.booking-card {
  display: flex;
  flex-direction: column;
  background: var(--beige-light);
  border: 2px solid var(--beige-dark);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  position: relative;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s,
    border-color 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transform: scale(0.92);
  transform-origin: center;
}

.booking-card-percent em {
  font-weight: 430;
  font-size: 1.2rem;
}

.booking-card:hover {
  transform: scale(0.92) translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: var(--purple-soft);
}

.booking-card.booking-featured {
  background-color: #734e9d;
  border-color: var(--purple-soft);
  transform: scale(1.15);
}

.booking-card.booking-featured:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 24px 64px rgba(74, 45, 111, 0.3);
}

.booking-popular {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--beige-dark);
  color: var(--purple-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-logo {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
  border-radius: 10px;
}

.booking-platform {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
}

.booking-platform.direct {
  color: var(--beige);
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: center;
  gap: 0;
}

.booking-card.booking-featured .booking-platform.direct {
  color: var(--beige);
}

.booking-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 8px;
  flex-shrink: 0;
}

.booking-logo.airbnb {
  position: relative;
  max-width: 1.6rem;
  background: #ff5a5f;
  color: white;
}

.booking-logo.booking {
  background: #003580;
  color: white;
}

.booking-card.booking-featured .booking-logo {
  background: rgba(245, 237, 224, 0.2);
  color: var(--beige);
}

.booking-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: inherit;
}

.booking-card.booking-featured h3 {
  color: var(--beige);
}

.booking-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: inherit;
  margin-bottom: 1.4rem;
  opacity: 0.85;
}

.booking-card.booking-featured p {
  color: var(--beige);
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.booking-features span {
  font-size: 1rem;
  color: inherit;
  opacity: 0.8;
}

.booking-card.booking-featured .booking-features span {
  color: var(--beige);
}

.booking-card .btn-primary {
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  border: none;
  cursor: pointer;
}

.pricing-perks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding: 1.4rem 2rem;
  background: var(--beige-light);
  border: 1px solid var(--beige);
  border-radius: 16px;
}

.pricing-perks span {
  font-size: 0.82rem;
  color: var(--text-mid);
}

/* ── FAQ ── */
#faq {
  background: var(--purple-deep);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 70%,
    rgba(74, 45, 111, 0.5) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(245, 237, 224, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(245, 237, 224, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  text-align: left;
  gap: 1.5rem;
  color: var(--beige-lightest);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--beige);
}
.faq-q[aria-expanded="true"] {
  color: var(--beige);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--purple-soft);
  transition:
    transform 0.35s var(--ease-out),
    color 0.3s;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--beige);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}

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

.faq-a p {
  padding: 0 0 1.4rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 237, 224, 0.65);
}

.faq-a p strong {
  color: var(--beige-lightest);
  font-weight: 500;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 10, 48, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

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

.modal-box {
  background: var(--purple-darkest);
  border: 1px solid rgba(245, 237, 224, 0.12);
  border-radius: 28px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 10;
  background: rgba(245, 237, 224, 0.1);
  border: 1px solid rgba(245, 237, 224, 0.2);
  color: var(--beige-lightest);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  transition:
    background 0.3s,
    transform 0.2s;
}
.modal-close:hover {
  background: rgba(245, 237, 224, 0.2);
  transform: rotate(90deg);
}

.modal-gallery {
  height: 340px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 2.4rem;
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--beige-lightest);
  margin-bottom: 0.4rem;
}

.modal-content .modal-sub {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 1.2rem;
}

.modal-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(245, 237, 224, 0.65);
  margin-bottom: 1.4rem;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.modal-spec {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 237, 224, 0.1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.modal-spec strong {
  display: block;
  color: var(--beige-lightest);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.modal-spec small {
  color: rgba(245, 237, 224, 0.4);
  font-size: 0.72rem;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.modal-tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: rgba(245, 237, 224, 0.07);
  border: 1px solid rgba(245, 237, 224, 0.14);
  border-radius: 20px;
  color: var(--beige);
}

.modal-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.modal-price strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--beige-lightest);
}
.modal-price span {
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.45);
  margin-left: 0.3rem;
}

.modal-price {
  display: none !important;
}

/* ── FOOTER UPDATE ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.4rem;
}

.footer-nav h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--beige--room-spaces);
}

.footer-social-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--beige--room-spaces);
}

.footer-nav a {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.5);
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--beige-lightest);
}

.footer-nav a.footer-cta {
  display: inline-block;
  background: var(--beige-dark);
  color: var(--purple-deep);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.4rem;
  transition: all 0.3s;
}

.footer-nav a.footer-cta:hover {
  background: var(--beige-lightest);
  transform: translateY(-2px);
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.4rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: rgba(245, 237, 224, 0.5);
  transition:
    color 0.3s,
    gap 0.3s;
  letter-spacing: 0.05em;
}
.social-link:hover {
  color: var(--beige-lightest);
  gap: 0.85rem;
}
.social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.social-link:hover .social-icon {
  opacity: 1;
}

footer address {
  font-style: normal;
  margin-top: 0.8rem;
}
footer address a {
  font-size: 0.82rem;
  color: rgba(245, 237, 224, 0.4);
  display: block;
  line-height: 1.8;
  transition: color 0.3s;
}
footer address a:hover {
  color: var(--beige);
}

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 1100px) {
  .rooms-grid-expanded {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .rooms-col-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rooms-grid-bottom {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .am-cards {
    grid-template-columns: 1fr 1fr;
  }
  .am-hero {
    grid-template-columns: 1fr;
  }
  .am-hero-img {
    height: 320px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 2rem;
  }
  .modal-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #gallery {
    padding: 5rem 1.6rem;
  }

  .gallery-grid-wrapper {
    display: none;
  }

  .gallery-slider-mobile {
    display: block;
    margin-bottom: 2rem;
  }

  .gallery-slider-mobile.active {
    display: block;
  }

  .slider-item {
    aspect-ratio: 3 / 4;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 0.5rem;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 0.5rem;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .gallery-item.gi-tall {
    break-inside: avoid;
  }
  .gallery-item.gi-wide {
    break-inside: avoid;
  }
  #experiences,
  #faq {
    padding: 4rem 1.6rem;
  }
  #pricing {
    padding: 5rem 1.6rem;
  }
  .pricing-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-card {
    transform: scale(1);
  }
  .booking-card:hover {
    transform: scale(1) translateY(-4px);
  }
  .booking-card.booking-featured {
    transform: scale(1.05);
  }
  .booking-card.booking-featured:hover {
    transform: scale(1.05) translateY(-4px);
  }
  .exp-grid {
    grid-template-columns: 1fr;
  }
  .am-cards {
    grid-template-columns: 1fr;
  }
  .rooms-col-right {
    grid-template-columns: 1fr;
  }
  .rooms-grid-bottom {
    grid-template-columns: 1fr;
    padding: 0 1.6rem;
  }
  .rooms-grid-expanded {
    display: none !important;
  }
  .rooms-slider-mobile {
    display: block;
  }
  .full-house-cta {
    padding: 0 1.6rem;
  }
  .full-house-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .full-house-price {
    align-items: flex-start;
  }
  .pricing-perks {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  .modal-gallery {
    height: 220px;
  }
  .modal-content {
    padding: 1.4rem;
  }
  .modal-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #about,
  #rooms,
  #amenities,
  #reviews,
  #location,
  #contact,
  #gallery,
  #experiences,
  #pricing,
  #faq {
    padding: 2.5rem 1.4rem;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 0;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 0.5rem;
  }

  /* AMENITIES EN PANTALLAS PEQUEÑAS */
  .am-hero-img {
    height: 180px;
  }
  .am-hero-content {
    padding: 1.2rem;
  }
  .am-hero-content h3 {
    font-size: 1.3rem;
  }
  .am-card {
    padding: 1rem;
  }
  .am-feature {
    padding: 1rem;
  }
  .modal-specs-grid {
    grid-template-columns: 1fr;
  }
}
