/* ═══════════════════════════════════════════════════════════════════════
   CEYLON AURA — Escapes Page Styles
   Full-Bleed Hero + Glassmorphic Booking + Bento Grid
   ═══════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════
   HERO — Featured Escape
   ══════════════════════════════════════════════════════════════════════════ */
.esc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #050505;
}

.esc-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 14s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    filter: brightness(0.75);
}

.esc-hero:hover .esc-hero__image {
    transform: scale(1.04);
}

.esc-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.25) 0%, transparent 30%),
        linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 45%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ── Hero Content Layout ─────────────────────────────────────────────── */
.esc-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

/* ── Hero Text ───────────────────────────────────────────────────────── */
.esc-hero__tag {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 18px;
    opacity: 0;
    animation: escFadeUp 0.7s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.esc-hero__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 300;
    color: white;
    line-height: 1.02;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0;
    animation: escFadeUp 0.9s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.esc-hero__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 380px;
    opacity: 0;
    animation: escFadeUp 0.8s 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

/* ══════════════════════════════════════════════════════════════════════════
   BOOKING CARD — Glassmorphic
   ══════════════════════════════════════════════════════════════════════════ */
.esc-booking-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    width: 260px;
    flex-shrink: 0;
    opacity: 0;
    animation: escFadeUp 0.8s 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: border-color 0.3s ease;
}

.esc-booking-card:hover {
    border-color: rgba(201,169,110,0.18);
}

.esc-booking-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.esc-booking-card__label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.esc-booking-card__price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.esc-booking-card__ai-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

/* Dates */
.esc-booking-card__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.esc-booking-card__date-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.esc-booking-card__date-value {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.esc-booking-card__date-value svg {
    color: var(--text-muted);
}

/* Reserve Button */
.esc-booking-card__btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: rgba(201,169,110,0.12);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.esc-booking-card__btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}

/* ══════════════════════════════════════════════════════════════════════════
   CURATED BY AURA AI SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.esc-curated {
    padding: 100px 0 80px;
    background: var(--dark);
    position: relative;
}

.esc-curated__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.esc-curated__icon {
    color: var(--gold);
    opacity: 0.7;
}

.esc-curated__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    color: white;
    font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════
   BENTO GRID
   ══════════════════════════════════════════════════════════════════════════ */
.esc-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-height: 480px;
}

.esc-bento__right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

/* ── Bento Card ──────────────────────────────────────────────────────── */
.esc-bento__card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.esc-bento__card:hover {
    border-color: rgba(201,169,110,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(-4px);
}

.esc-bento__card--large {
    min-height: 480px;
}

.esc-bento__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.esc-bento__card:hover .esc-bento__img {
    transform: scale(1.08);
}

/* ── Overlays ────────────────────────────────────────────────────────── */
.esc-bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 55%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.esc-bento__overlay--light {
    background: linear-gradient(0deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.1) 60%, transparent 100%);
}

.esc-bento__overlay--dark {
    background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.2) 100%);
}

/* ── Bento Content ───────────────────────────────────────────────────── */
.esc-bento__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 32px;
}

.esc-bento__content--compact {
    padding: 22px 24px;
}

.esc-bento__region {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.esc-bento__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: white;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 8px;
}

.esc-bento__card--small .esc-bento__name {
    font-size: 20px;
    margin-bottom: 0;
}

.esc-bento__desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 16px;
}

/* Action Button */
.esc-bento__action {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.esc-bento__action:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(201,169,110,0.3);
}

.esc-bento__action svg {
    transition: transform 0.3s ease;
}

.esc-bento__action:hover svg {
    transform: translateX(2px);
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — Minimal
   ══════════════════════════════════════════════════════════════════════════ */
.esc-footer {
    background: var(--dark);
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.esc-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.esc-footer__brand {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
}

.esc-footer__links {
    display: flex;
    gap: 24px;
}

.esc-footer__links a {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.esc-footer__links a:hover {
    color: rgba(255,255,255,0.7);
}

.esc-footer__copy {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .esc-hero__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 32px 60px;
    }

    .esc-booking-card {
        width: 100%;
        max-width: 360px;
    }

    .esc-bento {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .esc-bento__card--large {
        min-height: 400px;
    }

    .esc-bento__right {
        grid-template-columns: 1fr 1fr;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .esc-hero__title {
        font-size: 44px;
    }

    .esc-hero__content {
        padding: 0 24px 48px;
    }

    .esc-bento__right {
        grid-template-columns: 1fr;
    }

    .esc-bento__card--small {
        min-height: 200px;
    }

    .esc-curated {
        padding: 70px 0 60px;
    }

    .esc-footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .esc-hero__title {
        font-size: 36px;
    }

    .esc-booking-card {
        padding: 22px;
    }

    .esc-booking-card__price {
        font-size: 28px;
    }

    .esc-bento__content {
        padding: 24px;
    }
}
