:root {
    --navy: #0A1628;
    --navy-light: #112240;
    --navy-mid: #0d1f3c;
    --gold: #C9A84C;
    --gold-light: #e0bf6a;
    --gold-pale: #f0dfa0;
    --ivory: #FAF7F2;
    --ivory-dark: #f0ebe2;
    --text-light: rgba(250, 247, 242, 0.85);
    --text-muted: rgba(250, 247, 242, 0.5);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --scrollbar-width: 0px;
}

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

html {
    scroll-behavior: auto;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--ivory);
    overflow-x: hidden;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ─── UTILS ─── */
.serif {
    font-family: 'Playfair Display', serif;
}

.cormorant {
    font-family: 'Cormorant Garamond', serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── FOCUS & TOUCH ─── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

a,
button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* ─── ANIMATIONS ─── */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

label.shake {
    animation: shake 0.4s ease;
    color: #e87676;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

@keyframes scrollLine {
    to {
        transform: translateY(200%);
    }
}

@keyframes modalSlide {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.reveal-left {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 15px;
    transition: background 0.3s ease, padding 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 22, 40, 0.92);
    padding: 0 15px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

@supports (backdrop-filter: blur(1px)) {
    #navbar.scrolled {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        background: rgba(10, 22, 40, 0.82);
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    height: 70px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo:hover .logo-main {
    color: var(--gold);
    transition: 0.3s ease;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ivory);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7A1E3A;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--ivory);
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 6rem 2rem 3rem;
    transform: translateY(-100%);
    transition: transform 0.4s var(--transition);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--ivory);
    transition: color 0.3s ease;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 12s ease-out forwards;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 22, 40, 0.2) 0%,
            rgba(10, 22, 40, 0.15) 40%,
            rgba(10, 22, 40, 0.7) 70%,
            rgba(10, 22, 40, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem 10rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
    display: block;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ivory);
    opacity: 0;
    animation: fadeUp 0.9s 0.7s ease forwards;
    margin-bottom: 1rem;
    max-width: 700px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--text-light);
    opacity: 0;
    animation: fadeUp 0.9s 0.9s ease forwards;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

/* ─── BUTTONS ─── */
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

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

.btn-ghost {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(250, 247, 242, 0.5);
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
    position: absolute;
    bottom: 90px;
    right: 2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s 1.8s ease forwards;
}

.scroll-indicator span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-lr;
}

.scroll-arrow {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollLine 2s ease infinite;
}

/* ─── TRUST BAR ─── */
#trust {
    background: #7A1E3A;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 3rem 0;
}

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

.trust-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(201, 168, 76, 0.2);
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.trust-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.trust-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* ─── SECTIONS COMMON ─── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: #7A1E3A;
    margin: 1.5rem auto;
}

/* ─── ROOMS ─── */
#rooms {
    padding: 7rem 0;
    background: var(--navy);
}

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

/* ─── ROOM CARDS ─── */
.room-card {
    background: var(--navy-light);
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, border-color 0.3s ease;
    will-change: opacity, transform;
}

.room-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.room-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--navy-mid);
}

.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
}

.room-body {
    padding: 1.5rem;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.room-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.amenity-tag svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
    fill: none;
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 1rem;
}

.room-price {
    font-family: 'Playfair Display', serif;
}

.room-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.room-price .per {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.btn-view-room {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-view-room:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ─── ROOM MODAL OVERLAY ─── */
.room-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0s 0.25s;
}

.room-modal-overlay.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease, visibility 0s 0s;
}

.room-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 24, 0.88);
    cursor: pointer;
}

.room-modal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.2);
    transform: translate3d(0, 12px, 0);
    transition: transform 0.25s ease;
    will-change: transform;
    contain: layout style;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
}

.room-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(201, 168, 76, 0.08),
        inset 0 1px 0 rgba(201, 168, 76, 0.1);
    pointer-events: none;
    z-index: -1;
    border-radius: inherit;
}

.room-modal::-webkit-scrollbar {
    width: 4px;
}

.room-modal::-webkit-scrollbar-track {
    background: transparent;
}

.room-modal::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 2px;
}

.room-modal-overlay.is-open .room-modal {
    transform: translate3d(0, 0, 0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 42px;
    height: 42px;
    background: rgba(10, 22, 40, 0.92);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--ivory);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ── Modal Gallery ── */
.modal-gallery {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: var(--navy-mid);
}

.modal-gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s var(--transition);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.modal-gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modal-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10, 22, 40, 0.85) 100%);
    pointer-events: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 35px;
    height: 35px;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--ivory);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

.gallery-nav svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.modal-gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}

.modal-gallery-dots .gdot {
    width: 18px;
    border-radius: 3px;
    transform: scaleX(0.28);
    transition: transform 0.3s ease, background 0.3s ease;
    transform-origin: left center;
    background: rgba(250, 247, 242, 0.4);
}

.modal-gallery-dots .gdot.active {
    background: var(--gold);
    transform: scaleX(1);
}

.modal-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 5;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
}

/* ── Modal Body ── */
.modal-body {
    padding: 2.5rem;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.modal-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ivory);
    line-height: 1.15;
}

.modal-price-block {
    text-align: right;
    flex-shrink: 0;
}

.modal-price-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}

.modal-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.modal-price-per {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.15) 60%, transparent);
    margin-bottom: 1.75rem;
}

.modal-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ── Modal Specs ── */
.modal-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.12);
    margin-bottom: 2rem;
}

.spec-item {
    background: var(--navy);
    padding: 1.2rem 1rem;
    text-align: center;
    transition: background 0.3s ease;
}

.spec-item:hover {
    background: rgba(201, 168, 76, 0.06);
}

.spec-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.spec-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ivory);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.spec-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── Modal Amenities ── */
.modal-section-title {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.05);
}

.amenity-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ── Modal Policies ── */
.policies-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.policy-item {
    padding: 1rem;
    border-left: 2px solid rgba(201, 168, 76, 0.25);
    transition: border-color 0.3s ease;
}

.policy-item:hover {
    border-left-color: var(--gold);
}

.policy-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.policy-value {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Modal CTA Bar ── */
.modal-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    flex-wrap: wrap;
}

.modal-cta-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.modal-cta-info svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.modal-cta-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.modal-cta-info strong {
    color: var(--gold);
    font-weight: 600;
}

.modal-cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-modal-secondary {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    padding: 0.85rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-modal-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.btn-modal-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0.85rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-modal-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-modal-primary:hover::before {
    transform: translateX(0);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-modal-primary.disabled {
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(1);
    cursor: not-allowed;
}

/* ── Presidential Highlights ── */
.presidential-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.presidential-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.ph-item {
    background: rgba(10, 22, 40, 0.95);
    padding: 1.4rem 1.2rem;
    text-align: center;
    transition: background 0.3s ease;
}

.ph-item:hover {
    background: rgba(201, 168, 76, 0.07);
}

.ph-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
}

.ph-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.ph-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.ph-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ─── LOCATION ─── */
#location {
    padding: 7rem 0;
    background: var(--navy);
}

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

.map-wrap {
    position: relative;
    height: 450px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

.map-overlay-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--navy);
    border: 1px solid var(--gold);
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 500;
}

.location-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.landmarks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.landmark {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-left: 2px solid rgba(201, 168, 76, 0.2);
    transition: border-color 0.3s ease;
}

.landmark:hover {
    border-left-color: var(--gold);
}

.landmark-dist {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 2px;
}

.landmark-name {
    font-size: 0.85rem;
    color: var(--ivory);
    font-weight: 500;
}

.landmark-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ─── GALLERY ─── */
#gallery {
    padding: 7rem 0;
    background: var(--navy-mid);
}

/* GRID PRINCIPAL */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    /* 🔥 clave */
    gap: 0.75rem;
    margin-top: 3rem;
}

/* ITEMS */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* IMAGENES */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* LAYOUT ESPECIAL (hero style) */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    stroke: var(--ivory);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.lightbox.open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

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

.lightbox.open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--ivory);
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--ivory);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-nav svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(250, 247, 242, 0.6);
}

/* ─── OFFERS ─── */
#offers {
    padding: 0;
    background: linear-gradient(135deg, var(--gold) 0%, #a8822a 40%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.offers-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.offers-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.offers-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, 0.7);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.offers-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
}

.offers-sub {
    font-size: 0.9rem;
    color: rgba(10, 22, 40, 0.65);
    margin-top: 0.5rem;
}

.offers-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.countdown {
    display: flex;
    gap: 1rem;
}

.countdown-unit {
    text-align: center;
    background: rgba(10, 22, 40, 0.2);
    padding: 0.8rem 1.2rem;
    min-width: 65px;
}

.countdown-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, 0.6);
    margin-top: 0.3rem;
    display: block;
}

.btn-claim {
    background: var(--navy);
    color: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-claim:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* ─── CONTACT ─── */
#contact {
    padding: 7rem 0;
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
}

.contact-item-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-item-value {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--ivory);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e87676;
}

.error-msg {
    font-size: 0.7rem;
    color: #e87676;
    margin-top: 0.3rem;
    display: none;
}

.error-msg.show {
    display: block;
}

.btn-send {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-send:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.form-success {
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: none;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    fill: none;
    margin: 0 auto 1rem;
    display: block;
}

.form-success p {
    color: var(--text-light);
}

/* ─── FOOTER ─── */
footer {
    background: #7A1E3A;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 0.3rem;
}

.footer-brand-city {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    text-decoration: none;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--ivory);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ─── LEGAL MODAL ─── */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-content {
    background-color: #111D2D;
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(197, 160, 89, 0.2);
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: modalSlide 0.3s ease-out;
}

/* Disambiguate: legal modal header vs room modal header */
.modal .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 0;
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.modal .modal-header h2 {
    color: var(--gold);
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.close-modal {
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--ivory);
}

.modal-legal {
    padding: 2rem;
    color: #D1D5DB;
    line-height: 1.6;
    max-height: 60vh;
    overflow-y: auto;
    font-size: 0.95rem;
}

.modal-legal::-webkit-scrollbar {
    width: 6px;
}

.modal-legal::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.modal-footer {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: right;
}

.btn-close-footer {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-close-footer:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ─── CHECKBOX ─── */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    max-width: 450px;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    min-width: 18px;
    height: 18px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    background-color: transparent;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--gold);
    border-color: var(--gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.label-text {
    color: #9CA3AF;
    font-size: 0.85rem;
    line-height: 1.4;
}

.legal-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.legal-link:hover {
    opacity: 0.8;
}

/* ─── DISABLED STATE ─── */
.disabled {
    pointer-events: none;
    opacity: 0.3;
    cursor: not-allowed;
    filter: grayscale(1);
}

/* ─── SCROLL LOCK ─── */
body.modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
}

/* ─── RESIZE HELPER ─── */
body.is-resizing * {
    transition: none !important;
}

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

}

@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .btn-book-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        padding-bottom: 180px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2)::after,
    .trust-item:nth-child(4)::after {
        display: none;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-wrap {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .countdown {
        gap: 0.6rem;
    }

    .offers-right {
        align-items: flex-start;
    }

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

    .modal-gallery {
        height: 260px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policies-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal-header {
        flex-direction: column;
        gap: 1rem;
    }

    /* Keep legal modal header horizontal */
    .modal .modal-header {
        flex-direction: row;
        gap: 0;
    }

    .modal-price-block {
        text-align: left;
    }

    .modal-cta-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-cta-buttons {
        flex-direction: column;
    }

    .btn-modal-primary,
    .btn-modal-secondary {
        justify-content: center;
    }

    .presidential-highlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }

    .modal-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── HOVER ONLY DEVICES ─── */
@media (hover: hover) {
    .room-card:hover {
        border-color: rgba(201, 168, 76, 0.4);
    }

    .room-card:hover .room-img-wrap img {
        transform: scale(1.08);
    }

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

    .gallery-item:hover .gallery-overlay {
        background: rgba(10, 22, 40, 0.5);
    }

    .gallery-item:hover .gallery-overlay svg {
        opacity: 1;
        transform: scale(1);
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .room-card {
        opacity: 1;
        transform: none;
        will-change: auto;
    }
}