/* ============================================
   EL MARQUÉS — DESIGN SYSTEM
   Inspired by Lamborghini Design System
   Adapted for Colonial Luxury Hospitality
   ============================================ */

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../Fonts/CormorantGaramond-Variable.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../Fonts/Inter-Variable.woff2') format('woff2');
}

@font-face {
    font-family: 'Pinyon Script';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../Fonts/PinyonScript-Regular.woff2') format('woff2');
}

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

:root {
    /* — Primary Palette (Lamborghini-inspired) — */
    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --gold-dark: #A68B4B;
    --gold-text: #DBBF7C;

    /* — Surfaces (True black canvas) — */
    --black: #101010;
    --charcoal: #0A0A0A;
    --surface: #111111;
    --surface-elevated: #1A1A1A;
    --surface-card: #141414;

    /* — Text — */
    --white: #FFFFFF;
    --white-soft: #F5F3F0;
    --smoke: #E8E4DE;
    --ash: #B0A89C;
    --steel: #9A9188;

    /* — Fonts — */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-script: 'Pinyon Script', cursive;

    /* — Spacing (8px base) — */
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    --sp-2xl: 48px;
    --sp-3xl: 64px;
    --sp-4xl: 80px;
    --sp-5xl: 120px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION — Floating in darkness
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s ease, padding 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 40px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav__logo img {
    height: 120px;
    width: auto;
    transition: height 0.3s ease;
}

.nav.scrolled .nav__logo img {
    height: 80px;
}

.nav__links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav__links a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav__links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav__cta {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.5);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__lang {
    position: relative;
    cursor: pointer;
}

.nav__lang-current {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.7;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__lang-current::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.nav__lang.open .nav__lang-current::after {
    transform: rotate(180deg);
}

.nav__lang:hover .nav__lang-current,
.nav__lang.open .nav__lang-current {
    opacity: 1;
    border-color: rgba(201, 169, 110, 0.4);
    color: var(--gold);
}

.nav__lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav__lang.open .nav__lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__lang-option {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--ash);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav__lang-option:hover {
    color: var(--white);
    background: rgba(201, 169, 110, 0.06);
}

.nav__lang-option.active {
    color: var(--gold);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO — Full viewport cinematic
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28);
    transform: scale(1);
    animation: heroZoom 7s ease forwards;
}

.hero__slide.active img {
    animation: heroZoom 7s ease forwards;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero__dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero__dot {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero__dot.active {
    background: var(--gold);
    width: 48px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.hero__text {
    position: absolute;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.hero__text.active {
    opacity: 1;
    pointer-events: all;
}

.hero__text.active .hero__script {
    animation: heroTextIn 0.8s ease 0.1s forwards;
}

.hero__text.active .hero__title {
    animation: heroTextIn 0.8s ease 0.3s forwards;
}

.hero__text.active .hero__divider {
    animation: heroLineIn 0.8s ease 0.5s forwards;
}

.hero__text.active .hero__subtitle {
    animation: heroTextIn 0.8s ease 0.6s forwards;
}

.hero__text.active .hero__cta {
    animation: heroTextIn 0.8s ease 0.8s forwards;
}

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

@keyframes heroLineIn {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 60px; }
}

.hero__script {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
}

.hero__divider {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
    opacity: 0;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 40px;
    opacity: 0;
    white-space: nowrap;
}

.hero__cta {
    display: inline-block;
    padding: 16px 52px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

.hero__cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
}

.hero__scroll span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ash);
}

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

/* ============================================
   BOOKING BAR
   ============================================ */
.booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -95px;
    padding: 0 40px;
}

.booking-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201, 169, 110, 0.15);
    display: flex;
    align-items: center;
    padding: 0;
}

.booking-bar__field {
    position: relative;
    flex: 1;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-bar__field--date .booking-bar__input {
    padding-right: 22px;
}

.booking-bar__calendar-icon {
    position: absolute;
    right: 24px;
    bottom: 18px;
    width: 15px;
    height: 15px;
    color: var(--gold);
    pointer-events: none;
}

.booking-bar__label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.booking-bar__input {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color-scheme: dark;
}

select.booking-bar__input {
    -webkit-appearance: none;
    appearance: none;
}

.booking-bar__input option {
    background: #0a0a0a;
    color: var(--white);
}

.booking-bar__input::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

.booking-bar__divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 110, 0.15);
    flex-shrink: 0;
}

.booking-bar__btn {
    flex-shrink: 0;
    padding: 0 36px;
    height: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.booking-bar__btn:hover {
    background: var(--gold-dark);
}

@media (max-width: 1024px) {
    .booking-bar {
        margin-top: -50px;
    }
    .booking-bar__container {
        flex-wrap: wrap;
    }
    .booking-bar__field {
        flex: 1 1 45%;
        padding: 14px 20px;
    }
    .booking-bar__divider {
        display: none;
    }
    .booking-bar__btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }
}

@media (max-width: 768px) {
    .booking-bar {
        padding: 0 20px;
        margin-top: -30px;
    }
    .booking-bar__field {
        flex: 1 1 100%;
    }
}

/* ============================================
   SECTION GLOBALS
   ============================================ */
.section {
    padding: var(--sp-5xl) 40px;
    position: relative;
}

.section--dark {
    background: var(--black);
}

.section--elevated {
    background: var(--surface);
}

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

.section__header {
    text-align: center;
    margin-bottom: var(--sp-4xl);
}

.section__label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.section__line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.section__desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ash);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT — Historia & Esencia
   ============================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: center;
}

.about__image {
    position: relative;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.9);
}

.about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.15);
    pointer-events: none;
}

/* ============================================
   HOTEL SECTION — Premium Editorial Layout
   ============================================ */
/* ============================================
   LOGO PATTERN — Decorative backgrounds
   ============================================ */

/* Watermark: Monograma gigante sutil a la derecha */
.has-watermark {
    position: relative;
}

.has-watermark::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 400px;
    background: url('../imagenes/patron-logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* Watermark izquierdo */
.has-watermark-left::before {
    right: auto;
    left: -5%;
}

/* Patrón: Monograma repetido como textura */
.has-pattern {
    position: relative;
}

.has-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../imagenes/patron.svg') repeat;
    background-size: 600px auto;
    background-position: center;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
}

/* Monograma central decorativo */
.has-monogram {
    position: relative;
}

.has-monogram::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, 0);
    width: 550px;
    height: 450px;
    background: url('../imagenes/patron-logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

/* Monograma esquina inferior derecha — mitad visible */
.has-monogram-bottom-right {
    position: relative;
    overflow: hidden;
}

.has-monogram-bottom-right::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -200px;
    width: 500px;
    height: 420px;
    background: url('../imagenes/patron-logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Monograma esquina superior derecha — cortado */
.has-monogram-corner {
    position: relative;
    overflow: hidden;
}

.has-monogram-corner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -240px;
    width: 500px;
    height: 420px;
    background: url('../imagenes/patron-logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Franja decorativa inferior */
.has-pattern-bottom {
    position: relative;
}

.has-pattern-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url('../imagenes/patron.svg') repeat-x center;
    background-size: auto 100%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.hotel-section {
    padding: var(--sp-2xl) 0 var(--sp-5xl);
    overflow: hidden;
    background: #000000;
}

.hotel {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--sp-4xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.hotel__gallery {
    position: relative;
    height: 650px;
}

.hotel__img {
    position: absolute;
    overflow: hidden;
}

.hotel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hotel__img:hover img {
    transform: scale(1.03);
}

.hotel__img--main {
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    z-index: 1;
}

.hotel__img--main::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.12);
    pointer-events: none;
}

.hotel__img--secondary {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    z-index: 2;
    border: 4px solid var(--black);
}

.hotel__img--accent {
    bottom: 38%;
    right: 8%;
    width: 30%;
    height: 25%;
    z-index: 3;
    border: 3px solid var(--black);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hotel__year {
    position: absolute;
    top: 72%;
    left: 0;
    z-index: 4;
    background: var(--black);
    padding: 20px 28px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    text-align: center;
}

.hotel__year-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
}

.hotel__year-label {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 4px;
}

.hotel__content {
    padding: var(--sp-xl) 0;
}

.hotel__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.hotel__headline {
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 28px;
}

.hotel__stats {
    display: flex;
    gap: var(--sp-xl);
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.hotel__stat {
    text-align: center;
    flex: 1;
}

.hotel__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.hotel__stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ash);
    line-height: 1.5;
}

.about__text {
    padding: var(--sp-2xl) 0;
}

.about__label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.about__divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}

.about__body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ash);
    margin-bottom: 20px;
}

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: start;
}

.intro__left {
    padding-right: var(--sp-xl);
}

.intro__right {
    padding-top: 8px;
}

/* ============================================
   GEH SUITES SECTION — Premium Editorial (Inverted)
   ============================================ */
.geh-section {
    padding: var(--sp-5xl) 0;
    overflow: hidden;
    background: linear-gradient(165deg, #0c0c0c 0%, var(--black) 40%, #0f1114 100%);
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.geh {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--sp-4xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.geh__content {
    padding: var(--sp-xl) 0;
}

.geh__lead {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--white-soft);
    margin-bottom: 24px;
}

.geh__badge {
    margin-top: 40px;
    padding: 28px 0;
    text-align: center;
}

.geh__badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

.geh__badge-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ash);
    padding: 20px 0;
    max-width: 400px;
    margin: 0 auto;
}

.geh__badge-text strong {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.geh__visual {
    position: relative;
    padding: 24px;
}

.geh__visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.3;
}

.geh__visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.3;
}

.geh__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.geh__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.8s ease;
}

.geh__frame:hover img {
    transform: scale(1.03);
}

.geh__inset {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 45%;
    aspect-ratio: 3/2;
    overflow: hidden;
    z-index: 2;
    border: 4px solid #0c0c0c;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.geh__inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.geh__inset:hover img {
    transform: scale(1.05);
}

.geh__tag {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 3;
    background: rgba(16, 16, 16, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 22px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.geh__tag-icon {
    color: var(--gold);
    font-size: 18px;
}

.geh__tag-text {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ash);
    line-height: 1.6;
    text-align: left;
}

.about__quote {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--gold-text);
    margin: 32px 0 0;
    padding-left: 20px;
    border-left: 1px solid var(--gold);
}

/* ============================================
   FEATURES — 4 Pilares
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 169, 110, 0.08);
}

.feature {
    background: var(--black);
    padding: var(--sp-3xl) var(--sp-xl);
    text-align: center;
    transition: background 0.4s ease;
}

.feature:hover {
    background: var(--surface);
}

.feature__icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: block;
    color: var(--gold);
}

.feature__icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    stroke-width: 1;
    fill: none;
}

.feature__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.feature__text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ash);
}

/* ============================================
   ROOMS — Habitaciones
   ============================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
}

.room {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
}

.room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0, 0.15, 1), filter 0.3s ease;
    filter: brightness(0.7);
    will-change: transform;
}

.room:hover img {
    transform: scale(1.06);
    filter: brightness(0.3);
}

.room__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
}

.room__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.room__desc {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--smoke);
    margin-bottom: 8px;
}

.room__meta {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.room__link {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

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

/* El reveal-on-hover solo aplica en dispositivos con mouse real;
   en touch (tablets incluidas) el contenido queda siempre visible. */
@media (hover: hover) and (pointer: fine) {
    .room__desc,
    .room__meta,
    .room__link {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .room__meta { transition-delay: 0.05s; }
    .room__link { transition-delay: 0.1s; }

    .room:hover .room__desc,
    .room:hover .room__meta,
    .room:hover .room__link {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   GALLERY — Fullwidth cinema strip
   ============================================ */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.gallery-strip__item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.gallery-strip__item:hover img {
    transform: scale(1.08);
    filter: brightness(0.5);
}

.gallery-strip__label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.gallery-strip__item:hover .gallery-strip__label {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.lightbox__close:hover {
    opacity: 1;
}

/* ============================================
   EXPERIENCE — Parallax statement
   ============================================ */
.experience {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.experience__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25);
}

.experience__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.experience__quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.experience__quote em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold);
    font-size: 1.1em;
}

.experience__author {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ash);
}

/* ============================================
   AMENITIES — Grid de servicios
   ============================================ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 169, 110, 0.06);
    margin-top: var(--sp-2xl);
}

.amenity {
    background: var(--surface);
    padding: var(--sp-2xl);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background 0.3s ease;
}

.amenity:hover {
    background: var(--surface-elevated);
}

.amenity__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

.amenity__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.amenity__text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--steel);
}

/* ============================================
   LOCATION — Mapa & contexto
   ============================================ */
.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.location__map {
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) brightness(0.4) contrast(1.2);
    transition: filter 0.5s ease;
}

.location__map:hover iframe {
    filter: grayscale(0.5) brightness(0.6);
}

.location__info {
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-4xl) var(--sp-3xl);
}

.location__label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.location__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.location__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ash);
    margin-bottom: 32px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--smoke);
}

.location__detail-icon {
    color: var(--gold);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* ============================================
   CONTACT — Formulario
   ============================================ */
.contact-centered {
    display: flex;
    justify-content: center;
    gap: var(--sp-3xl);
    flex-wrap: wrap;
    margin-bottom: var(--sp-2xl);
}

.contact-cta {
    text-align: center;
    margin-top: var(--sp-xl);
}

.contact__data-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__data-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.contact__data-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 2px;
}

.contact__data-value {
    font-size: 15px;
    color: var(--white-soft);
}

.contact__data-value a {
    color: var(--white-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid rgba(201, 169, 110, 0.12);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--steel);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.4s ease;
    margin-top: 8px;
}

.form__submit:hover {
    background: var(--gold-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    padding: var(--sp-3xl) 40px var(--sp-xl);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../imagenes/EL MARQUES 9.jpg') no-repeat center;
    background-size: cover;
    filter: brightness(0.12) saturate(0.3);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 16, 16, 0.97) 0%,
        rgba(16, 16, 16, 0.88) 40%,
        rgba(16, 16, 16, 0.92) 100%
    );
    z-index: 1;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-2xl);
    padding-bottom: var(--sp-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__logo img {
    height: 130px;
    width: auto;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--ash);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-2xl);
    margin-bottom: var(--sp-2xl);
}

.footer__col-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__col p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--smoke);
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul a {
    font-size: 14px;
    font-weight: 400;
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer__bottom {
    padding-top: var(--sp-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 12px;
    color: var(--ash);
    letter-spacing: 1px;
}

.footer__credits {
    font-size: 12px;
    color: var(--ash);
}

.footer__credits a {
    color: var(--gold);
    text-decoration: none;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp svg {
    width: 28px;
    height: 28px;
    fill: #FFFFFF;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: max(24px, env(safe-area-inset-top));
    right: max(32px, env(safe-area-inset-right));
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.mobile-lang {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.mobile-lang__option {
    font-size: 13px !important;
    letter-spacing: 2px !important;
    font-weight: 400 !important;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    color: var(--ash) !important;
}

.mobile-lang__option.active,
.mobile-lang__option:hover {
    color: var(--gold) !important;
    border-color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
    .about { grid-template-columns: 1fr; gap: var(--sp-2xl); }
    .intro { grid-template-columns: 1fr; gap: var(--sp-2xl); }
    .intro__left { padding-right: 0; }
    .hotel { grid-template-columns: 1fr; gap: var(--sp-2xl); padding: 0 24px; }
    .hotel__gallery { height: 500px; }
    .hotel__img--accent { display: none; }
    .geh { grid-template-columns: 1fr; gap: var(--sp-2xl); padding: 0 24px; }
    .geh__visual { order: -1; }
    .about__image img { height: 400px; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(3, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .location { grid-template-columns: 1fr; }
    .location__map { min-height: 350px; }
    .contact-centered { gap: var(--sp-2xl); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
}

@media (max-width: 768px) {
    :root { --sp-3xl: 20px; }
    .section { padding: var(--sp-2xl) 20px; }
    .section__header { margin-bottom: var(--sp-xl); }
    .hero__content { padding: 0 24px; }
    .hero__subtitle { white-space: normal; }
    .features { grid-template-columns: 1fr; }
    .rooms-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 8vw;
        gap: 12px;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }
    .rooms-grid::-webkit-scrollbar {
        display: none;
    }
    .rooms-grid .room {
        flex: 0 0 78vw;
        scroll-snap-align: center;
        aspect-ratio: 3/4;
        border-radius: 0;
    }
    .rooms-grid .room img {
        filter: brightness(0.5);
    }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: 1fr; }
    .contact-centered { flex-direction: column; align-items: center; }
    .form__row { grid-template-columns: 1fr; }
    .footer__top { flex-direction: column; gap: 24px; }
    .footer__logo img { height: 90px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .nav { padding: 16px 20px; }
    .nav { flex-wrap: nowrap; }
    .nav__logo img { height: 64px; }
    .nav.scrolled .nav__logo img { height: 52px; }
    .nav__cta { display: none; }
    .nav__links { display: none; }
    .nav__actions { margin-left: auto; margin-right: 12px; gap: 0; }
    .nav__lang-current { padding: 6px 10px; }
    .hotel__gallery { height: 400px; }
    .hotel__img--main { width: 65%; height: 65%; }
    .hotel__img--secondary { width: 55%; height: 50%; }
    .hotel__stats { gap: var(--sp-md); }
    .hotel__stat-number { font-size: 28px; }
    .geh__visual { padding: 16px; }
    .geh__inset { width: 40%; }

    /* Quitar monogramas en mobile */
    .has-monogram-bottom-right::before,
    .has-watermark-left::before,
    .has-watermark::before,
    .has-monogram-corner::before,
    .has-monogram::before,
    .has-pattern-bottom::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__title { letter-spacing: 4px; }
    .gallery-strip { grid-template-columns: 1fr; }
}