/* ═══════════════════════════════════════════════════════════
   PH POBLADO — main.css
   Estilos portados de los componentes Astro
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4%;
    background: #13322c;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.3s;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--logo-light);
    letter-spacing: 0.3em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.6em;
    color: var(--logo-light);
    text-transform: uppercase;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nav-links);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--font-dark);
}

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: 0.3s;
}

.mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Menú móvil overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: #13322c;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 5rem;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold-dark);
}

.nav-cta-mobile {
    padding: 0.8rem 2rem !important;
    border: 1px solid white !important;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.2) 70%,
        rgba(10, 10, 10, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 6% 8vh;
    max-width: 800px;
    animation: fadeUp 1.2s ease-out;
}

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

.hero-badge {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.hero-badge::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
}

.hero-title-accent {
    display: block;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 600;
    color: white;
    font-style: italic;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: white;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
    animation: fadeUp 1.5s ease-out 0.5s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

.scroll-text {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-muted);
    writing-mode: vertical-lr;
}

/* ─────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────── */
.gallery {
    padding: 8rem 4% 6rem;
    background: var(--black);
}

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

.section-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--font-dark);
    line-height: 1.15;
}

.section-title em {
    color: var(--gold);
    font-weight: 500;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.item-0 {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.item-1 {
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}

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

.label-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.label-text {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 0.3rem;
}

.gallery-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 100px;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.35s;
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: translateY(0);
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.lightbox.is-open {
    visibility: visible;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.97);
    opacity: 0;
    transition: opacity 0.45s ease;
}

.lightbox.is-open .lightbox-backdrop {
    opacity: 1;
}

.lightbox-container {
    position: relative;
    z-index: 1;
    width: min(92vw, 1100px);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.lightbox.is-open .lightbox-container {
    opacity: 1;
    transform: none;
}

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

.lightbox-title {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.lightbox-label {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
}

.lightbox-counter {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.lightbox-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.lightbox-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lightbox-image-wrap {
    position: relative;
    flex: 1;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    overflow: hidden;
}

.lightbox-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.lightbox-image-wrap img.is-loading {
    opacity: 0;
}

.lightbox-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.lightbox-loader.is-active {
    opacity: 1;
}

.lightbox-loader::after {
    content: "";
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.lightbox-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-nav:active { transform: scale(0.93); }
.lightbox-nav:disabled { opacity: 0.2; pointer-events: none; }

.lightbox-thumbs {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar { display: none; }

.thumb {
    flex-shrink: 0;
    width: 80px;
    height: 54px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color 0.25s, opacity 0.25s;
    opacity: 0.5;
}

.thumb.is-active {
    border-color: var(--gold);
    opacity: 1;
}

.thumb:hover { opacity: 0.85; }

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* ─────────────────────────────────────────────────────────
   FEATURE (Piscina bajo cúpula)
───────────────────────────────────────────────────────── */
.feature {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.feature-bg {
    position: absolute;
    inset: 0;
}

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

.feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 2rem 4%;
    max-width: 700px;
}

.feature-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: white;
    display: block;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.feature-title em {
    color: white;
    font-weight: 500;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: white;
    max-width: 550px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────
   AMENITIES
───────────────────────────────────────────────────────── */
.amenities {
    padding: 6rem 4%;
    background: white;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.amenities-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--font-dark);
    max-width: 520px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.amenity-card {
    background: #008b8c;
    padding: 2.5rem 2rem;
    transition: background 0.4s;
}

.amenity-card:hover {
    background: var(--black-card);
}

.amenity-icon {
    font-size: 1.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
}

.amenity-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.amenity-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white-muted);
}

/* ─────────────────────────────────────────────────────────
   LOCATION
───────────────────────────────────────────────────────── */
.location {
    padding: 6rem 4%;
    background: var(--black);
}

.location-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.location-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--font-dark);
    margin-bottom: 2.5rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.highlight:first-child {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.highlight-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
}

.highlight-value {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--font-dark);
    text-align: right;
}

.location-view {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.location-view img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.view-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white-muted);
}

.caption-icon {
    color: var(--gold);
    font-size: 0.9rem;
}

.location-map {
    margin-top: 4rem;
    position: relative;
    height: 440px;
    overflow: hidden;
    filter: saturate(0.85) brightness(0.97);
}

.location-map-link {
    position: absolute;
    bottom: 1.2rem;
    right: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(19, 50, 44, 0.82);
    padding: 0.5rem 0.9rem;
    border-radius: 2px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.location-map-link:hover {
    background: rgba(19, 50, 44, 1);
}

/* ─────────────────────────────────────────────────────────
   VIDEO SECTION (wrapper)
───────────────────────────────────────────────────────── */
.video-section {
    padding: 6rem 4%;
    background: var(--black);
}

.vs {
    font-family: sans-serif;
    background: #0f0f0f;
    color: #fff;
    padding: clamp(16px, 3vw, 32px);
    border-radius: 12px;
    max-width: 1200px;
    margin: 30px auto;
    box-sizing: border-box;
}

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

.vs-title {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 700;
    margin: 0 0 16px;
}

.vs-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 20px;
    align-items: start;
}

.vs-main { min-width: 0; }

.vs-player-wrap {
    display: block;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.vs-player-wrap > div,
.vs-player-wrap iframe {
    display: block !important;
    width: 100% !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vs-meta { margin-top: 12px; }

.vs-meta-title {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.vs-meta-desc {
    font-size: clamp(12px, 1.2vw, 14px);
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.vs-list-item { flex-shrink: 0; }

.vs-item {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: background 0.15s;
}

.vs-item:hover  { background: #252525; border-color: #444; }
.vs-item.active { border-color: #ff0000; }

.vs-item-thumb {
    flex-shrink: 0;
    width: 96px;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
}

.vs-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vs-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.vs-item-cat {
    font-size: 10px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vs-item-title {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─────────────────────────────────────────────────────────
   RESERVATION FORM
───────────────────────────────────────────────────────── */
.reservation {
    padding: 6rem 4%;
    background: white;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.reservation-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.res-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white-muted);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.res-includes {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding-top: 1.5rem;
}

.includes-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.includes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.includes-list span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--white-muted);
    padding-left: 1rem;
    position: relative;
}

.includes-list span::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-size: 0.6rem;
}

.form-card {
    background: white;
    border: 1px solid #008b8c;
    padding: 2.5rem;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #008b8c;
}

.form-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.form-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--font-dark);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--font-dark);
    margin-bottom: 0.5rem;
}

.optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(39, 37, 34, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #008b8c;
    color: var(--font-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(184, 176, 160, 0.35);
}

.form-group select option {
    background: var(--black-card);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

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

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #25d366;
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.wa-icon { flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
    padding: 4rem 4% 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    background-color: var(--footer);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand { margin-bottom: 2rem; }

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--logo-light);
    letter-spacing: 0.3em;
    display: block;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--footer-font);
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--footer-font);
    max-width: 450px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--footer-font);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-bottom span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--footer-font);
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────
   PAGE NOSOTROS
───────────────────────────────────────────────────────── */
.nosotros-container {
    width: 90%;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.nosotros-container h1,
.nosotros-container h2 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.nosotros-container h1 { font-size: 2.5rem; }
.nosotros-container h2 { font-size: 1.75rem; margin-top: 3rem; }

.nosotros-container h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.nosotros-container p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--font-dark);
    margin-bottom: 1.5rem;
}

.nosotros-container ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--font-dark);
}

.nosotros-container ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--font-dark);
    list-style-type: none;
}

.nosotros-container li {
    margin: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
}

.nosotros-container .bold {
    color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
   MAPA DE UBICACIÓN
───────────────────────────────────────────────────────── */
.ph-map {
    background: #13322c;
    padding: 5rem 4% 0;
}

.ph-map-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ph-map-header .section-tag {
    color: rgba(201, 168, 76, 0.8);
}

.ph-map-header .section-title {
    color: #f5f0e8;
}

.ph-map-header .section-title em {
    color: rgba(201, 168, 76, 0.9);
}

.ph-map-frame {
    width: 100%;
    height: 480px;
    overflow: hidden;
    display: block;
    filter: saturate(0.9) brightness(0.95);
}

.ph-map-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.4rem 0 1.8rem;
    text-align: center;
}

.ph-map-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.ph-map-link:hover {
    color: rgba(201, 168, 76, 1);
    border-color: rgba(201, 168, 76, 0.6);
}

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

    .vs-layout {
        grid-template-columns: 1fr 190px;
        gap: 14px;
    }
    .vs-item-thumb { width: 68px; }
    .vs-item { padding: 6px; gap: 8px; }
    .vs-list { max-height: 340px; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .item-0 { grid-column: span 2; }
    .gallery-label, .gallery-expand { opacity: 1; transform: none; }

    .lightbox-container {
        width: 100%;
        height: 100dvh;
        max-width: 100%;
        padding: 0;
        gap: 0;
        justify-content: space-between;
    }

    .lightbox-header {
        padding: 1rem 1.2rem;
        background: rgba(5, 5, 5, 0.6);
        backdrop-filter: blur(10px);
        flex-shrink: 0;
    }

    .lightbox-label { font-size: 1.1rem; }

    .lightbox-main {
        flex: 1;
        min-height: 0;
        gap: 0;
        position: relative;
    }

    .lightbox-image-wrap {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        border-radius: 0;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 2.6rem;
        height: 2.6rem;
        background: rgba(10, 10, 10, 0.55);
        backdrop-filter: blur(6px);
    }

    .lightbox-nav.prev { left: 0.8rem; }
    .lightbox-nav.next { right: 0.8rem; }
    .lightbox-nav:active { transform: translateY(-50%) scale(0.92); }

    .lightbox-thumbs {
        flex-shrink: 0;
        padding: 0.7rem 1rem;
        background: rgba(5, 5, 5, 0.85);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        gap: 0.5rem;
    }

    .thumb { width: 68px; height: 50px; }

    .location-grid { grid-template-columns: 1fr; }
    .highlight { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
    .highlight-value { text-align: left; }

    .reservation-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-card { padding: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }

    .ph-map { padding-top: 4rem; }
    .ph-map-frame { height: 320px; }

    .location-map { height: 300px; margin-top: 3rem; }

    .footer-links { flex-wrap: wrap; gap: 1rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 600px) {
    .vs-layout { grid-template-columns: 1fr; gap: 16px; }

    .vs-list {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .vs-list-item {
        scroll-snap-align: start;
        flex: 0 0 180px;
    }

    .vs-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        overflow: hidden;
        height: 100%;
        gap: 0;
    }

    .vs-item-thumb { width: 100%; aspect-ratio: 16/9; border-radius: 0; }
    .vs-item-info { padding: 8px 8px 10px; }
}

@media (max-width: 550px) {
    .amenities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .item-0 { grid-column: span 1; }
    .gallery-item { aspect-ratio: 16/10; }

    .thumb { width: 56px; height: 42px; }
    .lightbox-header { padding: 0.8rem 1rem; }
    .lightbox-label { font-size: 1rem; }
}

@media (max-width: 360px) {
    .vs-list-item { flex: 0 0 155px; }
}
