:root {
  --color-hero-bg:    #E8DDD4;
  --color-terracotta: #C05543;
  --color-steel-blue: #7A9BAD;
  --color-sage:       #C4CEB6;
  --color-menu:       #DFE3C5;
  --color-brand-black:#111111;
  --color-booking:    #4A84A8;
}

body {
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.lang-nav {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 10;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lang-switcher a {
  color: var(--color-brand-black);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.lang-switcher a:hover {
  opacity: 0.85;
}

.lang-switcher a.active {
  opacity: 1;
  border-bottom: 2px solid var(--color-brand-black);
}

.lang-switcher .separator {
  color: var(--color-brand-black);
  opacity: 0.25;
  user-select: none;
}

.logo-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 1.1rem 1.8rem 1.2rem;
  line-height: 1;
  user-select: none;
}

.logo-box .logo-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-box .logo-subtitle {
  font-size: clamp(0.55rem, 0.9vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.hero-section {
  position: relative;
  background-color: var(--color-hero-bg);
}

.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.hero-slideshow-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation-name: hero-panel-fade;
  animation-duration: 24s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.hero-slideshow-panel:nth-child(1) { animation-delay: 0s;  }
.hero-slideshow-panel:nth-child(2) { animation-delay: 3s;  }
.hero-slideshow-panel:nth-child(3) { animation-delay: 6s;  }
.hero-slideshow-panel:nth-child(4) { animation-delay: 9s;  }
.hero-slideshow-panel:nth-child(5) { animation-delay: 12s; }
.hero-slideshow-panel:nth-child(6) { animation-delay: 15s; }
.hero-slideshow-panel:nth-child(7) { animation-delay: 18s; }
.hero-slideshow-panel:nth-child(8) { animation-delay: 21s; }
.hero-slideshow-panel:nth-child(9) {
  animation-name: hero-panel-fade-in-hold;
  animation-duration: 0.5s;
  animation-delay: 24s;
}

@keyframes hero-panel-fade {
  0%, 100% { opacity: 0; }
  2.0833%  { opacity: 1; }
  10.4167% { opacity: 1; }
  12.5%    { opacity: 0; }
}

@keyframes hero-panel-fade-in-hold {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow-panel,
  .hero-slideshow-panel:nth-child(9) {
    animation: none;
    opacity: 0;
  }

  .hero-slideshow-panel:last-child {
    opacity: 1;
  }
}

.hero-building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  min-height: 320px;
  max-height: 640px;
}

.rooms-img {
  mix-blend-mode: normal;
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--color-brand-black);
  text-transform: uppercase;
}

.tagline-bar {
  background-color: var(--color-brand-black);
  color: #fff;
  text-align: center;
  padding: 1.4rem 2rem;
  font-size: clamp(0.6rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tagline-bar .tagline-dot {
  display: inline-block;
  margin: 0 0.8em;
  opacity: 0.7;
}

.col-ubicacion { background-color: var(--color-terracotta); color: #fff;            }
.col-rooms     { background-color: var(--color-steel-blue); color: #fff;            }
.col-reserva   { background-color: var(--color-sage);       color: var(--color-brand-black); }
.col-menu      { background-color: var(--color-menu);       color: var(--color-brand-black); }

.info-col {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}

.col-heading {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.booking-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.booking-links a {
  color: var(--color-booking);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.booking-links a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.booking-links .dot {
  color: var(--color-brand-black);
  opacity: 0.4;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-btn-img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.menu-link:hover .menu-btn-img,
.menu-link:focus-visible .menu-btn-img {
  opacity: 0.8;
}

.rooms-img-trigger {
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto;
  display: block;
  max-width: 280px;
  width: 100%;
  cursor: pointer;
}

.rooms-img-trigger .rooms-img {
  transition: opacity 0.2s ease;
}

.rooms-img-trigger:hover .rooms-img,
.rooms-img-trigger:focus-visible .rooms-img {
  opacity: 0.8;
}

.rooms-gallery-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.rooms-gallery-hint-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.rooms-img-trigger:hover .rooms-gallery-hint,
.rooms-img-trigger:focus-visible .rooms-gallery-hint {
  opacity: 1;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.85);
}

.gallery-modal-content {
  position: relative;
  background-color: var(--color-hero-bg);
  width: 100%;
  max-width: 960px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem 1.25rem 1.5rem;
  border-radius: 4px;
}

.gallery-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--color-brand-black);
  color: #fff;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.gallery-modal-close svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gallery-modal-close:hover {
  opacity: 0.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-thumb {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  cursor: pointer;
}

.gallery-thumb img {
  transition: opacity 0.2s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  opacity: 0.8;
}

.gallery-grid img {
  width: 100%;
  min-width: 0;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .gallery-grid img {
    height: 200px;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.92);
}

.gallery-lightbox-img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  cursor: zoom-out;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  background-color: var(--color-brand-black);
  color: #fff;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-siguenos-label {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 60%;
  height: 60%;
}

@media (min-width: 768px) {
  .whatsapp-float {
    width: 84px;
    height: 84px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  }
}
