/*
Theme Name:  RNJ Hotel
Theme URI:   https://rnjhotel.com
Author:      RNJ Hotel Baguio
Author URI:  https://rnjhotel.com
Description: Official WordPress theme for RNJ Hotel Baguio — wellness-focused hotel in the cool city of Baguio.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rnj-hotel
Tags:        hotel, one-page, full-width-template, custom-menu, featured-images, responsive-layout
*/

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

/* ── TOKENS ── */
:root {
    --teal:        #174e57;
    --teal-mid:    #1e6370;
    --teal-light:  #2a8a99;
    --teal-pale:   #d4edf0;
    --gold:        #b89b5e;
    --gold-light:  #d4b97a;
    --cream:       #f7f5f0;
    --ivory:       #ede9e1;
    --deep:        #0d2e33;
    --charcoal:    #2a2a2a;
    --mid:         #5a6a6e;
    --muted:       #8a9ea3;
    --white:       #ffffff;
    --pad:         clamp(56px, 7vw, 110px);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 200;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: transparent;
    transition: background .4s, box-shadow .4s;
}
nav.solid {
    background: rgba(13,46,51,.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav-logo img {
    height: 42px;
    object-fit: contain;
    display: block;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    transition: color .3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-book {
    background: var(--gold) !important;
    color: var(--deep) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background .3s !important;
}
.nav-book:hover { background: var(--gold-light) !important; color: var(--deep) !important; }
.nav-phone {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-phone::before { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .3s;
}
.mob-menu {
    display: none;
    position: fixed;
    top: 70px;
    inset-inline: 0;
    background: rgba(13,46,51,.98);
    backdrop-filter: blur(14px);
    padding: 12px 5% 20px;
    z-index: 199;
    border-top: 1px solid rgba(184,155,94,.2);
}
.mob-menu.open { display: block; }
.mob-menu a {
    display: block;
    padding: 13px 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .3s;
}
.mob-menu a:hover { color: var(--gold-light); }
.mob-menu a.book-mob {
    color: var(--gold);
    font-weight: 600;
    border-bottom: none;
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
    transform: scale(1.04);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,46,51,.82) 0%, rgba(13,46,51,.4) 55%, rgba(13,46,51,.1) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp .8s ease .2s forwards;
}
.hero-badge::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
}
.hero-h1 {
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp .8s ease .4s forwards;
}
.hero-h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--teal-pale);
}
.hero-sub {
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,.65);
    max-width: 440px;
    margin-bottom: 36px;
    opacity: 0;
    animation: slideUp .8s ease .6s forwards;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp .8s ease .8s forwards;
}
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    padding: 15px 34px;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.35);
    cursor: pointer;
    transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 5%;
    display: flex;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    animation: slideUp .6s ease 1.1s forwards;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all .3s;
}
.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}
.scroll-cue {
    position: absolute;
    bottom: 30px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    animation: slideUp .6s ease 1.3s forwards;
}
.scroll-cue span {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    writing-mode: vertical-rl;
}
.scroll-cue .line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 1.6s ease infinite;
}

/* ── SECTIONS ── */
section { padding: var(--pad) 5%; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}
h2 {
    font-size: clamp(26px, 3.8vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep);
    margin-bottom: 14px;
}
h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--teal-light);
}
.sub {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    max-width: 500px;
}
.divider {
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0 26px;
}

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}
.about-imgs { position: relative; }
.about-main {
    width: 80%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.about-accent {
    position: absolute;
    bottom: -36px;
    right: 0;
    width: 52%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--cream);
    border-radius: 2px;
}
.about-tag {
    position: absolute;
    top: 28px;
    right: -20px;
    background: var(--teal);
    color: var(--white);
    padding: 18px 20px;
    text-align: center;
    line-height: 1.3;
    border-radius: 2px;
}
.about-tag strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
}
.about-tag span {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--teal);
    background: var(--teal-pale);
    border: 1px solid rgba(23,78,87,.15);
    padding: 6px 14px;
    border-radius: 20px;
}

/* ── ROOMS ── */
#rooms {
    background: var(--deep);
    padding-bottom: calc(var(--pad) + 20px);
}
#rooms h2 { color: var(--white); }
#rooms .sub { color: rgba(255,255,255,.42); }
#rooms .eyebrow { color: var(--gold-light); }
#rooms .eyebrow::before { background: var(--gold-light); }
.rooms-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1160px;
    margin: 0 auto 48px;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 1160px;
    margin: 0 auto;
}
.room-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}
.room-card:hover img { transform: scale(1.07); }
.room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,46,51,.93) 0%, rgba(13,46,51,.05) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 24px;
    transition: background .35s;
}
.room-card:hover .room-overlay {
    background: linear-gradient(to top, rgba(13,46,51,.97) 0%, rgba(13,46,51,.4) 55%);
}
.room-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.room-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.room-price {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
}
.room-price strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
}
.room-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s, transform .3s;
}
.room-card:hover .room-btn { opacity: 1; transform: translateY(0); }
.room-btn::after { content: '→'; }
.room-card.big {
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 360px;
}

/* ── FACILITIES ── */
#facilities { background: var(--ivory); }
.fac-top {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 54px;
}
.fac-top .eyebrow { justify-content: center; }
.fac-top .eyebrow::before { display: none; }
.fac-top .eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 1160px;
    margin: 0 auto;
}
.fac-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.fac-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.72);
    transition: transform .6s ease, filter .4s;
}
.fac-card:hover img { transform: scale(1.06); filter: brightness(.55); }
.fac-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.fac-icon {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1;
}
.fac-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .03em;
    margin-bottom: 4px;
}
.fac-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,.6);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s, transform .3s;
}
.fac-card:hover .fac-desc { opacity: 1; transform: translateY(0); }

/* ── GALLERY ── */
#gallery { background: var(--cream); padding-bottom: var(--pad); }
.gallery-top {
    max-width: 1160px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}
.gallery-count { font-size: 12px; font-weight: 400; color: var(--mid); letter-spacing: .05em; }
.gallery-count strong { color: var(--teal); font-weight: 600; }
.gallery-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}
.gfilter {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(23,78,87,.22);
    background: transparent;
    color: var(--mid);
    cursor: pointer;
    transition: all .25s;
}
.gfilter.active, .gfilter:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 1160px;
    margin: 0 auto;
}
.gitem {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--ivory);
}
.gitem.tall { aspect-ratio: 1 / 1.5; }
.gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.gitem:hover img { transform: scale(1.07); }
.gitem .caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(transparent 40%, rgba(13,46,51,.75));
    opacity: 0;
    transition: opacity .3s;
}
.gitem:hover .caption { opacity: 1; }
.caption-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
}
.caption-tag {
    font-size: 10px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: .05em;
    margin-top: 2px;
}

/* ── LIGHTBOX ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 600;
    background: rgba(5,16,18,.96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    touch-action: none;
}
.lightbox.open { display: flex; }
.lb-header {
    position: absolute;
    top: 0;
    inset-inline: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    background: linear-gradient(rgba(5,16,18,.8), transparent);
}
.lb-title { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); letter-spacing: .05em; }
.lb-counter { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.45); }
.lb-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-track-wrap { width: 100%; height: 100%; overflow: hidden; display: flex; align-items: center; }
.lb-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.lb-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 16px 90px;
}
.lb-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 2px;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .2s;
    user-select: none;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: var(--teal); }
.lb-footer {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: linear-gradient(transparent, rgba(5,16,18,.8));
    z-index: 10;
}
.lb-thumbs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    max-width: 100%;
    padding: 0 4px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 3px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s, border-color .2s;
}
.lb-thumb.active { border-color: var(--gold); opacity: 1; }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.swipe-hint {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    animation: hintFade 3s ease 0.5s forwards;
    pointer-events: none;
    white-space: nowrap;
}
@keyframes hintFade { 0%,70% { opacity: 1; } 100% { opacity: 0; } }
.swipe-arrow { display: inline-block; animation: swipeAnim 1.2s ease infinite; font-size: 16px; }
@keyframes swipeAnim { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* ── LOCATION ── */
#location {
    background: var(--teal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 0;
}
.loc-map { background: var(--teal-mid); min-height: 420px; overflow: hidden; }
.loc-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    filter: saturate(.7) contrast(1.1);
    display: block;
}
.loc-info {
    padding: clamp(40px, 6vw, 80px) 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loc-info .eyebrow { color: var(--gold-light); }
.loc-info .eyebrow::before { background: var(--gold-light); }
.loc-info h2 { color: var(--white); }
.loc-details { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.loc-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.loc-text span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.6; }
.loc-text a { color: var(--gold-light); text-decoration: none; }
.loc-text a:hover { text-decoration: underline; }

/* ── CTA ── */
#cta {
    background:
        linear-gradient(rgba(13,46,51,.78), rgba(13,46,51,.78)),
        url('https://rnjhotel.com/wp-content/uploads/2020/12/rjn-hotel-front-night-1.jpg') center/cover no-repeat;
    text-align: center;
    padding: 110px 5%;
}
#cta .eyebrow { justify-content: center; }
#cta .eyebrow::before { display: none; }
#cta .eyebrow::after { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
#cta h2 { color: var(--white); margin: 0 auto 14px; max-width: 640px; }
#cta .sub { margin: 0 auto 36px; text-align: center; color: rgba(255,255,255,.5); }
#cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #08181c; padding: 64px 5% 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 56px;
    max-width: 1160px;
    margin: 0 auto 48px;
}
.f-brand img { height: 48px; object-fit: contain; margin-bottom: 16px; display: block; }
.f-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.9; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.soc {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: all .3s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); }
.f-col h4 { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.42); text-decoration: none; transition: color .3s; }
.f-col ul li a:hover { color: var(--gold-light); }
.f-col p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.42); line-height: 2; }
.footer-bot {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bot p, .footer-bot a { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.22); text-decoration: none; }
.footer-bot a:hover { color: var(--gold); }
.footer-bot div { display: flex; gap: 20px; }

/* ── ROOM MODAL ── */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(8,24,28,.88);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
    background: var(--white);
    border-radius: 4px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: modalIn .35s cubic-bezier(.22,.68,0,1.2);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.94) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-gallery {
    position: relative;
    background: var(--deep);
    min-height: 420px;
    overflow: hidden;
    border-radius: 4px 0 0 4px;
}
.modal-slides {
    display: flex;
    height: 100%;
    min-height: 420px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.modal-slide { flex: 0 0 100%; min-height: 420px; }
.modal-slide img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13,46,51,.7);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background .25s;
    user-select: none;
}
.modal-prev { left: 10px; }
.modal-next { right: 10px; }
.modal-prev:hover, .modal-next:hover { background: var(--teal); }
.modal-photo-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.photo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .25s;
}
.photo-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }
.modal-info {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13,46,51,.7);
    border: none;
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background .2s;
}
.modal-close:hover { background: var(--teal); }
.modal-tag { font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.modal-title { font-size: 24px; font-weight: 700; color: var(--deep); line-height: 1.2; margin-bottom: 6px; }
.modal-price { font-size: 13px; color: var(--mid); margin-bottom: 20px; }
.modal-price strong { font-size: 22px; font-weight: 700; color: var(--teal); }
.modal-stats {
    display: flex;
    border: 1px solid var(--ivory);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}
.mstat { flex: 1; padding: 12px 14px; text-align: center; border-right: 1px solid var(--ivory); background: var(--cream); }
.mstat:last-child { border-right: none; }
.mstat-val { font-size: 18px; font-weight: 700; color: var(--teal); display: block; }
.mstat-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-top: 2px; }
.modal-section-title { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 400;
    color: var(--teal);
    background: var(--teal-pale);
    border: 1px solid rgba(23,78,87,.15);
    padding: 5px 12px;
    border-radius: 20px;
}
.amenity-pill span { font-size: 13px; }
.modal-nearby { font-size: 12px; color: var(--mid); line-height: 1.9; margin-bottom: 24px; }
.modal-nearby li { list-style: none; padding-left: 0; }
.modal-nearby li .bi { color: var(--gold); margin-right: 5px; font-size: 11px; }
.modal-book {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--ivory);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── BOOTSTRAP ICONS SIZING ── */
.pill .bi { font-size: 13px; vertical-align: middle; margin-right: 4px; }
.amenity-pill .bi { font-size: 14px; }
.loc-icon .bi { font-size: 18px; color: var(--gold-light); }
.nav-phone .bi { font-size: 13px; }
.modal-nearby .bi { font-size: 11px; color: var(--gold); margin-right: 4px; }
.soc .bi { font-size: 15px; }

/* ── ANIMATIONS ── */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .room-card.big { grid-column: span 2; }
    .fac-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    #location { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-wrap { grid-template-columns: 1fr; gap: 60px; }
    .about-tag { right: 0; }
    .rooms-grid { grid-template-columns: 1fr; }
    .room-card.big { grid-column: span 1; min-height: 280px; }
    .rooms-top { flex-direction: column; align-items: flex-start; gap: 14px; }
    .modal { grid-template-columns: 1fr; max-height: 95vh; }
    .modal-gallery { min-height: 260px; border-radius: 4px 4px 0 0; }
    .modal-slides, .modal-slide { min-height: 260px; }
    .modal-slide img { min-height: 260px; }
    .modal-info { padding: 24px 20px; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
    .gitem.tall { aspect-ratio: 1; }
    .lb-prev, .lb-next { display: none; }
    .lb-thumb { flex: 0 0 38px; height: 38px; }
}
@media (max-width: 520px) {
    .fac-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; }
}
@media (min-width: 769px) {
    .swipe-hint { display: none; }
}
