:root {
    --bg: #080808;
    --bg-2: #111111;
    --bg-3: #181818;
    --ink: #f4eee3;
    --muted: #9a9286;
    --line: #d71837;
    --gold: #c9ad78;
    --gold-dim: #8a7348;
    --btn: #d71837;
    --hero-mask: rgba(0, 0, 0, 0.52);
    --header-h: 4.5rem;
    --wrap: 1120px;
    --font: "Outfit", system-ui, sans-serif;
    --display: "Syne", "Outfit", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.55;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--gold);
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.6rem;
}

p {
    margin: 0 0 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--gold);
    color: #111;
    padding: 0.5rem 0.8rem;
    z-index: 100;
}

.skip-link:focus {
    top: 0.75rem;
}

.wrap {
    width: min(var(--wrap), calc(100% - 2.5rem));
    margin-inline: auto;
}

.muted {
    color: var(--muted);
}

.measure {
    max-width: 36rem;
}

.measure-sm {
    max-width: 22rem;
    margin: 0;
}

.eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #782020;
    backdrop-filter: blur(12px);
}

.site-header__inner {
    width: min(var(--wrap), calc(100% - 2.5rem));
    margin-inline: auto;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-header__end {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.social {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    color: var(--ink);
    border: 1px solid rgba(244, 238, 227, 0.25);
    border-radius: 50%;
}

.social a:hover,
.social a:active,
.social a:focus-visible {
    color: #14110c;
    background: var(--gold);
    border-color: var(--gold);
}

.site-header .social a:hover,
.site-header .social a:active,
.site-header .social a:focus-visible {
    color: #782020;
    background: #e0b534;
    border-color: #e0b534;
}

.social svg {
    width: 1rem;
    height: 1rem;
}

.site-footer .social {
    margin-top: 0;
    justify-content: flex-end;
}

.site-logo img {
    height: 2.6rem;
    width: auto;
    mix-blend-mode: lighten;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--ink);
    border-bottom-color: #e0b534;
}

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    position: relative;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
    content: "";
    display: block;
    width: 1.1rem;
    height: 1px;
    background: #e0b534;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-toggle__bar { top: 50%; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

/* Hero */

.hero {
    --swiper-navigation-color: #f4eee3;
    --swiper-navigation-size: 1.35rem;
    --swiper-pagination-color: var(--btn);
    --swiper-pagination-bullet-inactive-color: #f4eee3;
    --swiper-pagination-bullet-inactive-opacity: 0.35;
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 32rem;
    overflow: hidden;
    background: #0c0c0c;
}

.hero.swiper {
    margin: 0;
}

.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.hero .swiper-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero__media,
.hero__mask,
.hero__slide-img,
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__slide-img,
.hero__video {
    object-fit: cover;
    object-position: center;
}

.hero__mask {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.58) 0%,
            var(--hero-mask) 42%,
            rgba(0, 0, 0, 0.62) 100%
        ),
        radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.32) 100%);
}

.hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 5.5rem 0 4.5rem;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
    width: 3rem;
    height: 3rem;
    margin-top: 0;
    top: 50%;
    z-index: 4;
    background: rgba(26, 26, 26, 0.5);
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
}

.hero .swiper-button-prev {
    left: 1.25rem;
}

.hero .swiper-button-next {
    right: 1.25rem;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
    font-size: 1.05rem;
    font-weight: 700;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
    background: #1a1a1a;
}

.hero .swiper-pagination {
    z-index: 4;
    bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 8vw, 5.4rem);
    letter-spacing: -0.03em;
    max-width: 14ch;
    line-height: 1.22;
    padding-bottom: 0.08em;
    overflow: visible;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__lead {
    max-width: 36rem;
    font-size: 1.1rem;
    color: #e8e0d4;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero .btn--ghost {
    border-color: var(--ink);
    background: rgba(8, 8, 8, 0.28);
    backdrop-filter: blur(6px);
}

body.is-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

body.is-home .site-header.is-scrolled {
    background: #782020;
  
    backdrop-filter: blur(12px);
}

body.is-home .site-nav a {
    color: rgba(244, 238, 227, 0.88);
}

@media (prefers-reduced-motion: reduce) {
    .hero .swiper-slide {
        transition: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--solid {
    background: var(--btn);
    border-color: var(--btn);
    color: #fff;
}

.btn--solid:hover {
    background: #b0122c;
    border-color: #b0122c;
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
}

.btn--ghost:hover {
    background: var(--btn);
    border-color: var(--btn);
    color: #fff;
}

.btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
    gap: 0.55rem;
}

.btn.is-loading .btn__spinner {
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* Sections */

.section {
    padding: 0rem 0;
}

.section--tight {
    padding: 3.5rem 0;
}

.section--form {
    padding-bottom: 3.5rem;
}

.section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section__head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-hero {
    padding: 2.5rem 0 2.5rem;
  
}

.page-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

/* Promociones */
#promociones {
    background: #EBEBEB;
    padding: 3.5rem 0;
}
#promociones h2 {
    color: #111;
}
#promociones .eyebrow {
    color: #111;
}


#habitaciones {
    padding: 3.5rem 0;
}

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

.promo-card {
    background: var(--bg-2);
   
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.promo-card a {
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.promo-card__visual {
    position: relative;
    overflow: hidden;
    background: var(--bg-3);
}

.promo-card__visual.swatch-a,
.promo-card__visual.swatch-b,
.promo-card__visual.swatch-c {
    min-height: 11rem;
}

.promo-card__visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-card__visual span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
    background: var(--gold);
    padding: 0.25rem 0.5rem;
}

.swatch-a { background: linear-gradient(135deg, #3a2a16 0%, #c9ad78 48%, #1a1208 100%); }
.swatch-b { background: linear-gradient(160deg, #1c2430 0%, #6b5340 55%, #0d0d0d 100%); }
.swatch-c { background: linear-gradient(200deg, #4a1f24 0%, #8a5a3a 40%, #12100e 100%); }
.swatch-d { background: linear-gradient(45deg, #222 0%, #444 50%, #1a1a1a 100%); }
.swatch-e { background: linear-gradient(120deg, #2a2218, #5c4a32); }
.swatch-f { background: linear-gradient(90deg, #1a1a1a, #3d3428 60%, #111); }

.promo-card__body {
    padding: 1.35rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-card__body h3 {
    font-size: 1.35rem;
}

.promo-card__meta {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Teasers / cards genéricos */

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

.card {
   
    background: var(--bg-2);
}

.card__media {
    height: 12rem;
    overflow: hidden;
    background: var(--bg-3);
}

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

.card__body {
    padding: 1.2rem 1.15rem 1.4rem;
}

.card__price {
    margin: 0.6rem 0 0;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.rooms-swiper {
    --swiper-navigation-color: #f4eee3;
    --swiper-navigation-size: 1.15rem;
    --swiper-pagination-color: var(--btn);
    --swiper-pagination-bullet-inactive-color: #f4eee3;
    --swiper-pagination-bullet-inactive-opacity: 0.35;
    position: relative;
    overflow: hidden;
    padding: 0 0 2.75rem;
}

.rooms-swiper .swiper-slide {
    height: auto;
}

.rooms-swiper .room-card,
.rooms-swiper .room-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rooms-swiper .room-card > a {
    color: inherit;
}

.rooms-swiper .card__body {
    flex: 1;
}

.rooms-swiper .swiper-button-prev,
.rooms-swiper .swiper-button-next {
    width: 2.6rem;
    height: 2.6rem;
    margin-top: 0;
    top: 6rem;
    z-index: 4;
    background: rgba(26, 26, 26, 0.55);
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
}

.rooms-swiper .swiper-button-prev {
    left: 0.5rem;
}

.rooms-swiper .swiper-button-next {
    right: 0.5rem;
}

.rooms-swiper .swiper-button-prev::after,
.rooms-swiper .swiper-button-next::after {
    font-size: 0.95rem;
    font-weight: 700;
}

.rooms-swiper .swiper-button-prev:hover,
.rooms-swiper .swiper-button-next:hover {
    background: #1a1a1a;
}

.rooms-swiper .swiper-pagination {
    bottom: 0;
}

.room-detail__copy {
    max-width: 40rem;
    margin-bottom: 1.25rem;
}

.room-mosaic {
    display: grid;
    gap: 0.45rem;
    height: 28rem;
    margin-bottom: 1.75rem;
}

.room-mosaic[data-count="1"],
.room-mosaic[data-count="2"] {
    grid-template-rows: 1fr;
}

.room-mosaic[data-count="1"] {
    grid-template-columns: 1fr;
}

.room-mosaic[data-count="2"] {
    grid-template-columns: 1fr 1fr;
}

.room-mosaic[data-count="3"],
.room-mosaic[data-count="4"] {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.room-mosaic[data-count="4"] {
    grid-template-columns: 2fr 1fr 1fr;
}

.room-mosaic[data-count="5"] {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.room-mosaic[data-count="3"] .room-mosaic__item:first-child,
.room-mosaic[data-count="4"] .room-mosaic__item:first-child,
.room-mosaic[data-count="5"] .room-mosaic__item:first-child {
    grid-row: span 2;
}

.room-mosaic[data-count="4"] .room-mosaic__item:nth-child(4) {
    grid-column: 2 / span 2;
}

.room-mosaic__item {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: var(--bg-3);
    overflow: hidden;
    cursor: zoom-in;
    color: inherit;
    font: inherit;
}

.room-mosaic__item img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.room-mosaic__item:hover img {
    transform: scale(1.03);
    transition: transform 0.45s ease;
}

.room-mosaic__more {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    background: rgba(8, 8, 8, 0.58);
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.room-mosaic__more span:last-child {
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gold);
}

.lightbox {
    position: relative;
    width: min(96vw, 72rem);
    max-width: 96vw;
    height: min(92vh, 52rem);
    max-height: 92vh;
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #080808;
    color: var(--ink);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.86);
}

.lightbox__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #080808;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1px solid rgba(244, 238, 227, 0.2);
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.72);
    color: var(--ink);
    cursor: pointer;
}

.lightbox__close:hover,
.lightbox__nav:hover {
    color: var(--ink);
    background: var(--btn);
    border-color: var(--btn);
}

.lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
}

.lightbox__nav--prev {
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__count {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    margin: 0;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--muted);
}

.lightbox[data-single] .lightbox__nav {
    display: none;
}

.room-amenities__title {
    font-size: 1.15rem;
    margin: 1.75rem 0 1rem;
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
    gap: 0.75rem;
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.room-amenities li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 0.7rem 0.85rem;
    text-align: center;
    background: var(--bg-3);
    border: 1px solid rgba(201, 173, 120, 0.18);
}

.room-amenities__icon {
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    color: #1a1a1a;
    background: var(--ink);
    border-radius: 50%;
}

.room-amenities__icon img {
    width: 1.7rem;
    height: 1.7rem;
    object-fit: contain;
}

.room-amenities__label {
    font-size: 0.82rem;
    line-height: 1.3;
    color: var(--ink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12rem;
    gap: 0.45rem;
    padding-bottom: 3.5rem;
}

.tile {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: var(--bg-3);
    cursor: zoom-in;
    color: inherit;
    font: inherit;
}

.tile img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.tile:hover img {
    transform: scale(1.03);
    transition: transform 0.45s ease;
}

.menu-accordion {
    border-top: 1px solid rgba(244, 238, 227, 0.12);
}

.menu-acc {
    border-bottom: 1px solid rgba(244, 238, 227, 0.12);
}

.menu-acc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-acc summary::-webkit-details-marker {
    display: none;
}

.menu-acc summary:hover {
    color: var(--gold);
}

.menu-acc__icon {
    flex: 0 0 0.7rem;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.menu-acc[open] .menu-acc__icon {
    transform: rotate(225deg);
}

.menu-acc__body {
    padding: 0 0 1.25rem;
}

.menu-list {
    display: grid;
    gap: 0;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(244, 238, 227, 0.1);
}

.menu-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.menu-item strong {
    font-family: var(--display);
    font-size: 1.15rem;
}

.menu-item__note {
    margin: 0.3rem 0 0;
}

.price {
    color: var(--gold);
    font-size: 0.95rem;
}

/* Forms */

.form {
    position: relative;
    max-width: 36rem;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form .hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.form input,
.form textarea,
.form select {
    font: inherit;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 0.8rem 0.9rem;
}

.form textarea {
    min-height: 8rem;
    resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: 1px solid var(--gold);
    border-color: var(--gold);
}

.form input.is-invalid,
.form textarea.is-invalid,
.form select.is-invalid {
    border-color: #e35a6a;
}

.form .field-error {
    color: #e35a6a;
    font-size: 0.75rem;
    letter-spacing: 0;
    text-transform: none;
}

.form .btn {
    justify-self: start;
    width: auto;
}

.swal2-popup.swal-delirium {
    border: 1px solid #2a2118;
}

.swal2-popup.swal-delirium .btn {
    min-width: 8rem;
}

.note {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Mapa */

.site-map {
    background: #f5f5f5;
    padding-bottom: 3.5rem;
}

.site-map__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.25rem;
    padding: 3.5rem 0 1.5rem;
}
.site-map__head .eyebrow, .site-map__head #map-title {
    color: #111;
}

.site-map__head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0;
}

.site-map__frame {
    height: min(52vh, 28rem);
    min-height: 16rem;
    background: #fff;
    overflow: hidden;
}

.site-map__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 720px) {
    .site-map__head {
        flex-direction: column;
        align-items: start;
    }
}

/* Footer */

.site-footer {
    padding: 3rem 0 2.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.site-footer__logo img {
    height: 2.6rem;
    width: auto;
    mix-blend-mode: lighten;
}

.site-footer__address {
    margin: 0.75rem 0 0;
    max-width: 16.5rem;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--muted);
}

.site-footer__address a:hover {
    color: var(--gold);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.1rem;
}

.site-footer__links a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe57;
}

.whatsapp-float svg {
    width: 1.7rem;
    height: 1.7rem;
}

@media (prefers-reduced-motion: no-preference) {
    .whatsapp-float {
        animation: whatsapp-pulse 2.4s ease-out infinite;
    }
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 900px) {
    .promo-grid,
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 10rem;
        padding-bottom: 2.5rem;
    }

    .room-mosaic {
        height: 22rem;
    }

    .room-mosaic[data-count="4"],
    .room-mosaic[data-count="5"] {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.35fr 1fr 1fr;
    }

    .room-mosaic[data-count="4"] .room-mosaic__item:first-child,
    .room-mosaic[data-count="5"] .room-mosaic__item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .room-mosaic[data-count="4"] .room-mosaic__item:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: var(--header-h);
        background: #0c0c0c;
        border-bottom: 1px solid var(--line);
        padding: 1rem 1.25rem 1.4rem;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0.7rem;
    }

    .promo-grid,
    .card-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer .social {
        justify-content: flex-start;
    }

    .site-footer__links {
        justify-content: flex-start;
    }

    .section__head {
        flex-direction: column;
        align-items: start;
    }

    .hero .swiper-button-prev,
    .hero .swiper-button-next {
        width: 2.4rem;
        height: 2.4rem;
    }

    .hero .swiper-button-prev {
        left: 0.65rem;
    }

    .hero .swiper-button-next {
        right: 0.65rem;
    }

    .room-mosaic {
        height: 28rem;
    }

    .room-mosaic[data-count="2"],
    .room-mosaic[data-count="3"] {
        height: 16rem;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .room-mosaic[data-count="3"] .room-mosaic__item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .lightbox__nav--prev {
        left: 0.4rem;
    }

    .lightbox__nav--next {
        right: 0.4rem;
    }
}
