/* ═══════════════════════════════════════════════════
   HOTEL LA SIESTA — SECTIONS CSS
   Hero, Brand Intro, Two Worlds, Experience, Rooms,
   Gallery, Restaurant, Pool, Pet Friendly, Gastronomy,
   Testimonials, Location, Reserva, Footer
═══════════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.16;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.25) 0%,
    rgba(10,8,5,0.1) 40%,
    rgba(10,8,5,0.6) 80%,
    rgba(10,8,5,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 45ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── BRAND INTRO ─── */
.brand-intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream-light);
}

.brand-intro__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-intro__text .h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.brand-intro__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-left: 4rem;
  border-left: 1px solid var(--beige);
}

/* ─── TWO WORLDS ─── */
.two-worlds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 85vh;
  min-height: 500px;
}

.two-worlds__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.two-worlds__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

.two-worlds__card:hover .two-worlds__bg {
  transform: scale(1.06);
}

.two-worlds__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.85) 0%,
    rgba(10,8,5,0.3) 60%,
    rgba(10,8,5,0.15) 100%
  );
  transition: background 0.5s;
}

.two-worlds__card:hover .two-worlds__overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.9) 0%,
    rgba(10,8,5,0.4) 60%,
    rgba(10,8,5,0.2) 100%
  );
}

.two-worlds__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
}

.two-worlds__content .h2 {
  margin: 0.3rem 0 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.two-worlds__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* ─── EXPERIENCE ─── */
.experience__full-image {
  height: 80vh;
  min-height: 500px;
  position: relative;
}

.experience__full-image .parallax-img {
  inset: -25% 0;
}

.experience__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: linear-gradient(to top, rgba(10,8,5,0.9) 0%, transparent 100%);
}

.experience__caption .h2 {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.experience__content {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-light);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.experience__grid--reverse {
  direction: rtl;
}

.experience__grid--reverse > * {
  direction: ltr;
}

.experience__text .h3 {
  margin: 0.5rem 0 1.2rem;
}

/* Image stack component */
.img-stack {
  position: relative;
}

.img-stack__main {
  width: 85%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.img-stack__main:hover img {
  transform: scale(1.04);
}

.img-stack__secondary {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  width: 52%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--cream-light);
}

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

.img-stack__secondary:hover img {
  transform: scale(1.04);
}

/* ─── ROOMS ─── */
.rooms {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-light);
}

.rooms--ciudad {
  background: var(--beige);
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

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

.room-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.room-card__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.room-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
}

.room-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Featured room (Ciudad) */
.rooms__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rooms__featured-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.rooms__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.rooms__featured-image:hover img {
  transform: scale(1.04);
}

.rooms__featured-text .h3 {
  margin: 1rem 0 1rem;
}

.rooms__featured-text .btn {
  margin-top: 2rem;
}

/* ─── GALLERY PLAYA ─── */
.gallery-playa {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

.gallery-playa__track {
  display: flex;
  gap: 1.5rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.gallery-playa__item {
  flex: 0 0 calc(33.333% - 1rem);
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.gallery-playa__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-playa__item:hover img {
  transform: scale(1.06);
}

.gallery-playa__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.8), transparent);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2rem 1.2rem 1.2rem;
  font-weight: 300;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.gallery-playa__item:hover .gallery-playa__caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-playa__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ─── RESTAURANT PLAYA ─── */
.restaurant-playa {
  background: var(--cream-light);
}

.restaurant-playa__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.restaurant-playa__image {
  position: relative;
}

.restaurant-playa__image .parallax-img {
  inset: -25% 0;
}

.restaurant-playa__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
}

.restaurant-playa__text .h2 {
  margin: 0.5rem 0 1.5rem;
}

.restaurant-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rf-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
}

.rf-icon {
  font-size: 1.1rem;
}

/* ─── POOL SECTION ─── */
.pool-section {
  background: var(--cream-light);
}

.pool-section__full {
  height: 70vh;
  min-height: 400px;
  position: relative;
}

.pool-section__full .parallax-img {
  inset: -25% 0;
}

.pool-section__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.85) 0%,
    rgba(10,8,5,0.2) 60%,
    transparent 100%
  );
}

.pool-section__content .container {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pool-section__content .h2 {
  margin: 0.5rem 0 1rem;
}

.pool-section__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 45ch;
  line-height: 1.7;
}

.pool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pool-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
}

.pool-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.pool-grid__item:hover img {
  transform: scale(1.05);
}

/* ─── RESTAURANT CIUDAD ─── */
.restaurant-ciudad {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--dark);
}

.restaurant-ciudad .label {
  color: var(--sand-light);
}

.restaurant-ciudad__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.restaurant-ciudad .h2 {
  color: var(--white);
  margin: 0.5rem 0 1.5rem;
}

.restaurant-ciudad .h2 em {
  color: var(--gold-light);
}

.restaurant-ciudad .body-text {
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
}

.bar-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bar-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}

.bar-feature:hover {
  border-color: rgba(201,163,72,0.4);
  background: rgba(201,163,72,0.05);
}

.bar-feature__icon {
  font-size: 1.4rem;
}

.bar-feature span:last-child {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.ciudad-img-grid {
  display: grid;
  grid-template-rows: 3fr 2fr;
  gap: 1rem;
  height: 550px;
}

.ciudad-img-grid--single {
  grid-template-rows: 1fr;
}

.ciudad-img-grid__main,
.ciudad-img-grid__secondary {
  overflow: hidden;
}

.ciudad-img-grid__main img,
.ciudad-img-grid__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.ciudad-img-grid__main:hover img,
.ciudad-img-grid__secondary:hover img {
  transform: scale(1.04);
}

/* ─── PET FRIENDLY ─── */
.pet-friendly {
  background: var(--beige);
}

.pet-friendly__split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 70vh;
}

.pet-friendly__split--single {
  grid-template-columns: 1.2fr 1fr;
}

/* ─── SEDE DIVIDER ─── */
.sede-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 2rem;
}

.sede-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand, #c9b79c), transparent);
}

.sede-divider__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.08em;
  color: var(--text-mid, #8a8377);
  white-space: nowrap;
}

.pet-friendly__image {
  overflow: hidden;
}

.pet-friendly__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.pet-friendly__image:hover img {
  transform: scale(1.05);
}

.pet-friendly__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem);
  background: var(--dark);
}

.pet-friendly__text .label {
  color: var(--sand-light);
}

.pet-friendly__text .h2 {
  color: var(--white);
  margin: 0.5rem 0 1.5rem;
}

.pet-friendly__text .h2 em {
  color: var(--gold-light);
}

.pet-friendly__text .body-text {
  color: rgba(255,255,255,0.65);
}

/* ─── GASTRONOMÍA ─── */
.gastronomia {
  background: var(--cream-light);
}

.gastronomia__hero {
  height: 70vh;
  min-height: 400px;
  position: relative;
}

.gastronomia__hero .parallax-img {
  inset: -25% 0;
}

.gastronomia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.9) 0%,
    rgba(10,8,5,0.4) 60%,
    rgba(10,8,5,0.2) 100%
  );
  z-index: 1;
}

.gastronomia__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem);
}

.gastronomia__title .h2 {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.gastronomia__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--cream-light);
}

.gastro-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gastro-item:first-child {
  grid-row: 1 / 3;
}

.gastro-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gastro-item:hover img {
  transform: scale(1.06);
}

.gastro-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}

.gastro-item:hover .gastro-item__overlay {
  background: rgba(10,8,5,0.45);
}

.gastro-item__overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out);
}

.gastro-item:hover .gastro-item__overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--cream-light);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--sand);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-card__origin {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ─── LOCATION ─── */
.location {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--beige);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.location__card {
  background: var(--white);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.location__icon {
  font-size: 2.5rem;
}

.location__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
}

.location__address {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  text-align: center;
}

.location__map-embed {
  overflow: hidden;
  height: 350px;
}

.location__map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.3) contrast(1.1);
}

/* ─── RESERVA ─── */
.reserva {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}

.reserva__bg {
  position: absolute;
  inset: 0;
}

.reserva__bg .parallax-img {
  inset: -25% 0;
}

.reserva__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.78);
}

.reserva__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.reserva__content .h2 {
  margin: 0.5rem 0 1.2rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.reserva__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3rem;
}

.reserva__options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.reserva__option {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  min-width: 220px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}

.reserva__option:hover {
  border-color: rgba(201,163,72,0.4);
  background: rgba(255,255,255,0.07);
}

.reserva__option h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}

.reserva__option p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.reserva__divider {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer__logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: var(--gold-light);
}

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

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .rooms__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gastronomia__grid .gastro-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .location__map-embed {
    height: 300px;
  }

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

@media (max-width: 768px) {
  .two-worlds {
    grid-template-columns: 1fr;
    height: auto;
  }

  .two-worlds__card {
    height: 60vh;
  }

  .experience__grid,
  .experience__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .experience__grid--reverse > * {
    direction: ltr;
  }

  .img-stack__secondary {
    display: none;
  }

  .img-stack__main {
    width: 100%;
  }

  .brand-intro__layout {
    grid-template-columns: 1fr;
  }

  .brand-intro__stats {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--beige);
    padding-top: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .restaurant-playa__split {
    grid-template-columns: 1fr;
  }

  .restaurant-playa__image {
    height: 50vh;
  }

  .restaurant-ciudad__layout {
    grid-template-columns: 1fr;
  }

  .ciudad-img-grid {
    height: 400px;
  }

  .pet-friendly__split {
    grid-template-columns: 1fr;
  }

  .pet-friendly__image {
    height: 50vw;
  }

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

  .gallery-playa__item {
    flex: 0 0 80vw;
  }

  .reserva__options {
    flex-direction: column;
    align-items: stretch;
  }

  .reserva__divider {
    text-align: center;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

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