/* ============================================================
   POSADA DEL VIENTO — main.css
   Estilos específicos del sitio. Mobile-first.
   Breakpoints: sm ≥600px · md ≥900px · lg ≥1280px
   ============================================================ */


/* ------------------------------------------------------------
   SITE HEADER / NAV
   ------------------------------------------------------------ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

/* Hamburger button */
.site-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.site-header__hamburger,
.site-header__hamburger::before,
.site-header__hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header__hamburger {
  position: relative;
}

.site-header__hamburger::before,
.site-header__hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.site-header__hamburger::before { top: -7px; }
.site-header__hamburger::after  { top:  7px; }

/* Hamburger → X cuando está abierto */
.site-header--open .site-header__hamburger {
  background-color: transparent;
}
.site-header--open .site-header__hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header--open .site-header__hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav móvil — drawer */
.site-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--color-white);
  /* border-bottom: 1px solid var(--border-light); */
  transform: translateY(-128%);
  transition: transform var(--transition-slow);
  z-index: 99;
}

.site-nav--open {
  transform: translateY(0);
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-6) var(--space-6);
  gap: var(--space-1);
}

.site-nav__link {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.site-nav__link:hover {
  color: var(--brand-primary);
  text-decoration: none;
}

.site-nav__list li:last-child .site-nav__link {
  border-bottom: none;
}

.site-nav__cta {
  margin-top: var(--space-4);
  align-self: flex-start;
}


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

/* Slides de fondo */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.hero__slide--active .hero__slide-bg {
  animation: hero-ken-burns 8s ease-in-out forwards;
}

@keyframes hero-ken-burns {
  0%   { transform: scale(1)    translateX(0%); }
  50%  { transform: scale(1.06) translateX(-0.8%); }
  100% { transform: scale(1.04) translateX(0.8%); }
}

@keyframes hero-ken-burns-br {
  0%   { transform: scale(1.8) translateY(-15%); }
  100% { transform: scale(1.95) translateY(-13%); }
}

.hero__slide--suites .hero__slide-bg {
  transform: scale(1.8) translateY(-15%);
}
.hero__slide--suites.hero__slide--active .hero__slide-bg {
  animation: hero-ken-burns-br 8s ease-in-out forwards;
}

@media (min-width: 600px) {
  .hero__slide--suites .hero__slide-bg {
    transform: none;
  }
  .hero__slide--suites.hero__slide--active .hero__slide-bg {
    animation: hero-ken-burns 8s ease-in-out forwards;
  }
}

/* Overlay degradado */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26, 26, 24, 0.80) 0%,
    rgba(26, 26, 24, 0.35) 55%,
    rgba(26, 26, 24, 0.12) 100%
  );
  pointer-events: none;
}

/* Fusión suave hacia la sección siguiente */


.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

/* Textos rotativos */
.hero__texts {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: var(--space-8);
}

.hero__text {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  pointer-events: none;
}

.hero__text--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__title {
  color: var(--color-white);
  font-size: var(--text-4xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  max-width: 36ch;
}

/* Dots */
.hero__dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.hero__dot {
  height: 6px;
  width: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--transition-base), width var(--transition-base);
}

.hero__dot--active {
  background: var(--color-white);
  width: 22px;
}


/* ------------------------------------------------------------
   BOOKING BAR
   ------------------------------------------------------------ */

.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: calc(-1 * var(--space-10));
  padding-bottom: var(--space-8);
}

.booking-bar__form {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.booking-bar__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
  min-width: 0;
}

.booking-bar__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.booking-bar__input {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-bar__input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(59, 109, 17, 0.12);
}


.booking-bar__submit {
  align-self: stretch;
  white-space: nowrap;
}

.booking-bar__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.booking-bar__copy-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  margin: 0;
}

.booking-bar__copy-sub {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin: 0;
}

@media (min-width: 900px) {
  .booking-bar__form {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
  }

  .booking-bar__submit {
    align-self: flex-end;
  }
}

@media (min-width: 1280px) {
  .booking-bar__form {
    flex-wrap: nowrap;
  }
}


/* ------------------------------------------------------------
   BIENVENIDOS
   ------------------------------------------------------------ */

.bienvenidos {
  text-align: left;
}

.bienvenidos__inner {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

.bienvenidos__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.bienvenidos__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bienvenidos .text-eyebrow {
  margin-bottom: var(--space-3);
}

.bienvenidos__title {
  margin-bottom: var(--space-4);
}

.bienvenidos .divider--accent {
  margin-bottom: var(--space-6);
}

.bienvenidos__lead {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
}

.bienvenidos__body {
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
}

.bienvenidos__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.bienvenidos__video-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brand-primary);
}

.bienvenidos__video-link:hover {
  color: var(--brand-dark);
  text-decoration: none;
}


/* ------------------------------------------------------------
   ALOJAMIENTO
   ------------------------------------------------------------ */

/* Stories grid */
.stories-grid {
  margin-inline: calc(-1 * var(--container-px));
  padding-inline: max(10vw, calc(50vw - 150px));
}

/* Story card */
.story-card {
  position: relative;
  flex: 0 0 80vw;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-neutral-900);
  scroll-snap-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.35s ease;
}


/* Progress bars */
.story-card__progress {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  gap: 4px;
  z-index: 10;
}

.story-card__bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
  overflow: hidden;
}

.story-card__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-white);
  border-radius: 1px;
}

@keyframes story-progress {
  from { width: 0% }
  to   { width: 100% }
}

/* Slides */
.story-card__slides {
  position: absolute;
  inset: 0;
}

.story-card__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.story-card__slide--active {
  opacity: 1;
}

.story-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption overlay — slide 1 */
.story-card__caption {
  position: absolute;
  inset: auto 0 0;
  padding: var(--space-16) var(--space-5) var(--space-12);
  background: linear-gradient(to top, rgba(26, 26, 24, 0.9) 0%, transparent 100%);
}

.story-card__price {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-amber-100);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-1);
}

.story-card__name {
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.story-card__features {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--leading-loose);
}

/* Review slide */
.story-card__slide--review {
  background: linear-gradient(150deg, var(--color-green-800) 0%, var(--color-green-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
}

.story-card__review-inner {
  text-align: center;
  color: var(--color-white);
}

.story-card__review-inner::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  line-height: 0.8;
  color: var(--color-green-100);
  opacity: 0.45;
  margin-bottom: var(--space-4);
}

.story-card__review-text {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: var(--weight-light);
  font-size: var(--text-base);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-6);
  letter-spacing: 0.01em;
}

.story-card__reviewer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.story-card__reviewer strong {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  color: var(--color-white);
}

.story-card__platform-logo {
  display: block;
  height: 24px;
  width: auto;
  opacity: 0.85;
}

/* Nav zones (tap left / right) */
.story-card__nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.story-card__nav--prev { left: 0; }
.story-card__nav--next { right: 0; }

/* CTA */
.story-card__cta {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 10;
  background: var(--brand-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.story-card__cta:hover {
  background: var(--brand-dark);
  color: var(--color-white);
  text-decoration: none;
}

.habitaciones {
  background: var(--bg-base);
}

.habitaciones__footer {
  margin-top: var(--space-8);
  text-align: center;
}


/* ------------------------------------------------------------
   SERVICIOS
   ------------------------------------------------------------ */

.servicios__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.servicios__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.servicios__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-primary);
  line-height: 0;
}

.servicios__icon svg {
  width: 28px;
  height: 28px;
}

.servicios__item h4 {
  margin-bottom: var(--space-1);
}

.servicios__item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}


/* ------------------------------------------------------------
   PROMOCIONES
   ------------------------------------------------------------ */

.promociones .text-eyebrow {
  margin-bottom: var(--space-3);
}

.promociones h2 {
  margin-bottom: var(--space-4);
}

.promociones__lead {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-10);
}

.promociones__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.promociones__card {
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}

.promociones__pct {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-semibold);
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.promociones__label {
  color: rgba(255, 255, 255, 0.80);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
}

.promociones__footer-note {
  color: rgba(255, 255, 255, 0.60);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
}


/* ------------------------------------------------------------
   GASTRONOMÍA
   ------------------------------------------------------------ */

.gastronomia__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.gastronomia__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gastronomia__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gastronomia__content .text-eyebrow {
  margin-bottom: var(--space-3);
}

.gastronomia__content h2 {
  margin-bottom: var(--space-4);
}

.gastronomia__content .divider--accent {
  margin-bottom: var(--space-5);
}

.gastronomia__content p {
  color: var(--text-secondary);
  line-height: var(--leading-loose);
}


/* ------------------------------------------------------------
   BAR
   ------------------------------------------------------------ */

.bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.bar__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bar__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bar__card:hover .bar__image {
  transform: scale(1.04);
}

.bar__body {
  padding: var(--space-5) var(--space-6);
}

.bar__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.bar__text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
}

@media (min-width: 600px) {
  .bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------------------------------------
   PAISAJES
   ------------------------------------------------------------ */

.paisajes__inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.paisajes__inner + .paisajes__inner {
  margin-top: var(--space-6);
}

.paisajes__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.paisajes__inner.overlay::after {
  background: linear-gradient(
    to top,
    rgba(26, 26, 24, 0.78) 0%,
    rgba(26, 26, 24, 0.45) 50%,
    rgba(26, 26, 24, 0.10) 100%
  );
}

.paisajes__content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.60);
}

.paisajes__content .text-eyebrow {
  margin-bottom: var(--space-3);
  color: var(--color-green-100);
}

.paisajes__content h3 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.paisajes__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  max-width: 40ch;
}


/* ------------------------------------------------------------
   INSTAGRAM
   ------------------------------------------------------------ */

.instagram__handle {
  display: inline-block;
  color: var(--brand-primary);
  font-weight: 500;
  font-size: var(--text-base);
  text-decoration: none;
  margin-top: var(--space-1);
}

.instagram__handle:hover {
  text-decoration: underline;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.instagram__item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.instagram__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.instagram__item:hover .instagram__img {
  transform: scale(1.05);
}

@media (min-width: 600px) {
  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ------------------------------------------------------------
   CONTACTO
   ------------------------------------------------------------ */

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.contacto__mapa {
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.contacto__mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contacto__lead {
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-3);
}

.contacto__sub {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.contacto__datos {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contacto__datos li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.contacto__datos a {
  color: var(--brand-primary);
  text-decoration: none;
}

.contacto__datos a:hover {
  text-decoration: underline;
}

.contacto__dato-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contacto__redes {
  display: flex;
  gap: var(--space-4);
}

.contacto__red {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-primary);
  transition: background 0.2s, color 0.2s;
}

.contacto__red:hover {
  background: var(--brand-primary);
  color: var(--color-white);
}

@media (min-width: 1280px) {
  .contacto__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contacto__mapa {
    height: 420px;
  }
}

/* ------------------------------------------------------------
   CTA FINAL
   ------------------------------------------------------------ */

.cta-final {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-final.overlay::after {
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 24, 0.65) 0%,
    rgba(26, 26, 24, 0.75) 100%
  );
}

.cta-final__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.cta-final__title {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.40);
}

.cta-final__sub {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.40);
}

/* ------------------------------------------------------------
   SITE FOOTER
   ------------------------------------------------------------ */

.site-footer {
  background-color: var(--color-neutral-900);
  color: var(--color-white);
  padding-top: var(--space-20);
  padding-bottom: var(--space-6);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Columna marca */
.site-footer__brand img {
  display: block;
  filter: brightness(0) invert(1);
  width: auto;
  height: auto;
  max-width: 180px;
  margin-bottom: var(--space-3);
}

.site-footer__tagline {
  color: var(--color-white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.site-footer__sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-xs);
  margin-bottom: var(--space-5);
}

.site-footer__redes {
  display: flex;
  gap: var(--space-3);
}

.site-footer__redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.70);
  transition: background 0.2s, color 0.2s;
}

.site-footer__redes a:hover {
  background: var(--brand-primary);
  color: var(--color-white);
}

/* Columnas nav */
.site-footer__col-title {
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.60);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Columna contacto */
.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.60);
  line-height: var(--leading-normal);
}

.site-footer__contact-list a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__contact-list a:hover {
  color: var(--color-white);
}

/* Legal */
.site-footer__legal {
  margin-top: var(--space-6);
  text-align: center;
  color: rgba(255, 255, 255, 0.30);
  font-size: var(--text-xs);
}

@media (min-width: 600px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  }
}


/* ------------------------------------------------------------
   RESPONSIVE — TABLET (≥ 480px)
   ------------------------------------------------------------ */

@media (min-width: 600px) {

  .hero__title {
    font-size: var(--text-5xl);
  }

  .stories-grid {
    overflow-x: unset;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }

  .story-card {
    flex: unset;
    max-width: unset;
  }

  .promociones__grid {
    flex-direction: row;
  }

  .gastronomia__image-wrap {
    aspect-ratio: 16 / 9;
  }
}


/* ------------------------------------------------------------
   RESPONSIVE — DESKTOP (≥ 1024px)
   ------------------------------------------------------------ */

@media (min-width: 1280px) {

  /* Nav — horizontal */
  .site-header__menu-btn {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    border: none;
    background: none;
  }

  .site-nav[aria-hidden="true"] {
    /* En desktop siempre visible */
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: var(--space-1);
  }

  .site-nav__link {
    border-bottom: none;
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
  }

  .site-nav__link:hover {
    background-color: var(--bg-muted);
  }

  .site-nav__cta {
    margin-top: 0;
    align-self: center;
  }

  /* Hero */
  .hero {
    align-items: center;
    padding-bottom: 0;
  }

  .hero__title {
    font-size: var(--text-6xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
  }

  /* Bienvenidos — lado a lado */
  .bienvenidos__inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Gastronomía — lado a lado */
  .gastronomia__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-16);
  }

  .gastronomia__image-wrap {
    aspect-ratio: 1 / 1;
  }

}

/* ============================================================
   SECCIONES OCULTAS TEMPORALMENTE (prueba de layout)
   ============================================================ */
/* .servicios, */
.gastronomia,
.bar,
.instagram {
  display: none;
}


/* ------------------------------------------------------------
   PAGE SPINNER
   ------------------------------------------------------------ */

.page-spinner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.page-spinner--visible {
  opacity: 1;
  pointer-events: auto;
}

.page-spinner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.page-spinner__logo {
  width: 180px;
  height: auto;
  animation: spinner-logo-breathe 2s ease-in-out infinite;
}

.page-spinner__dots {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.page-spinner__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  animation: spinner-dot-pulse 1.4s ease-in-out infinite;
}

.page-spinner__dot:nth-child(2) { animation-delay: 0.2s; }
.page-spinner__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes spinner-logo-breathe {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1;   }
}

@keyframes spinner-dot-pulse {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.75); }
  40%           { opacity: 1;   transform: scale(1);    }
}


/* ============================================================
   FOTOS — galería con filtros y lightbox
   ============================================================ */

.fotos-page {
  padding-top: calc(var(--header-height) + var(--space-10));
  padding-bottom: var(--space-20);
  background-color: var(--bg-base);
}

.fotos-page .section-header {
  margin-bottom: var(--space-8);
}

/* Filtros */
.fotos-filters {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-8);
}

@media (min-width: 1280px) {
  .fotos-filters {
    justify-content: center;
    overflow-x: visible;
  }
}

.fotos-filters::-webkit-scrollbar { display: none; }

.fotos-filter {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-5);
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.fotos-filter:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.fotos-filter--active,
.fotos-filter--active:hover {
  color: var(--color-white);
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* Grilla */
.fotos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.fotos-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: none;
  background: var(--color-neutral-200);
  cursor: pointer;
  position: relative;
}

.fotos-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.fotos-item:hover .fotos-item__img {
  transform: scale(1.04);
}

.fotos-item--hidden {
  display: none;
}

/* Lightbox */
.fotos-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 10, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.fotos-lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.fotos-lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--space-16) var(--space-12);
}

.fotos-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: block;
}

.fotos-lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.fotos-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fotos-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.fotos-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.fotos-lightbox__nav--prev { left: var(--space-4); }
.fotos-lightbox__nav--next { right: var(--space-4); }

.fotos-lightbox__caption {
  position: absolute;
  bottom: var(--space-5);
  left: 0;
  right: 0;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

@media (min-width: 600px) {
  .fotos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .fotos-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .fotos-header h1 { font-size: var(--text-4xl); }
  .fotos-lightbox__nav--prev { left: var(--space-8); }
  .fotos-lightbox__nav--next { right: var(--space-8); }
}


