/* ======================================================================
   LAHR HOTELS - EDITORIAL LUXURY DESIGN SYSTEM
   A premium, unique, conversion-focused design
   ====================================================================== */

/* =================== CSS CUSTOM PROPERTIES =================== */
:root {
    /* Colors - Refined Luxury Palette */
    --bg: #FFFFFF;
    --bg-warm: #FAF8F5;
    --bg-cream: #F5F0EB;
    --bg-dark: #0F0F0F;
    --primary: #8B7355;
    --primary-dark: #6B5840;
    --accent: #C4A97D;
    --accent-light: #D4BF9A;
    --accent-glow: rgba(196, 169, 125, 0.15);
    --text: #1A1A1A;
    --text-light: #555555;
    --muted: #999999;
    --border: #E8E2DA;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-dark: rgba(26, 26, 26, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 40px rgba(196, 169, 125, 0.2);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-editorial: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-ui: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-pad: clamp(20px, 4vw, 60px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --nav-height: 80px;
    --bottom-nav-height: 72px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

::selection {
    background: var(--accent);
    color: var(--white);
}

/* =================== PRELOADER =================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 24px;
}

.pl-letter {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: plReveal 0.6s var(--ease-out) forwards;
    animation-delay: calc(var(--i) * 0.12s + 0.3s);
}

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

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 16px;
    transform: scaleX(0);
    animation: plLine 0.8s var(--ease-out) 1s forwards;
}

@keyframes plLine {
    to { transform: scaleX(1); }
}

.preloader-sub {
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    animation: plFade 0.6s var(--ease) 1.2s forwards;
}

@keyframes plFade {
    to { opacity: 1; }
}

#preloader.loaded {
    animation: preloaderOut 0.8s var(--ease-out) forwards;
}

@keyframes preloaderOut {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* =================== CUSTOM CURSOR =================== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-outline {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
    opacity: 0.5;
}

.cursor-dot.hover {
    width: 16px;
    height: 16px;
    background: var(--accent);
}

.cursor-outline.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent);
    opacity: 0.3;
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* =================== FLOATING DECORATIVE ELEMENTS =================== */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-el {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: var(--accent);
}

.float-el:nth-child(1) {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
}

.float-el:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -80px;
}

.float-el:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 40%;
}

/* =================== NAVIGATION =================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 6px;
    transition: color 0.4s;
}

.logo-sub {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

.navbar.scrolled .logo-main {
    color: var(--text);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--accent);
}

.navbar.scrolled .nav-phone {
    color: var(--text-light);
}

.navbar.scrolled .nav-phone:hover {
    color: var(--primary);
}

.btn-book-nav {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 100px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-book-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Hide mobile-only elements on desktop */
.nav-menu .nav-link i,
.nav-menu-header,
.nav-menu-cta,
.nav-menu-backdrop {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
}

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

.navbar.scrolled .hamburger span {
    background: var(--text);
}

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

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

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

/* =================== STICKY BOOKING CTA =================== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-dark);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta-text {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
}

.sticky-cta-btn {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.sticky-cta-btn:hover {
    background: var(--primary);
}

/* =================== HERO: AWWWARDS-LEVEL CINEMATIC =================== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full-Screen Background Slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 25s ease infinite alternate;
    will-change: transform;
}

@keyframes kenBurns {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.15) translateY(-2%); }
}

/* Multi-Layer Cinematic Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 25% 45%, rgba(196,169,125,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(139,115,85,0.08) 0%, transparent 45%),
        linear-gradient(180deg,
            rgba(5,5,5,0.5) 0%,
            rgba(5,5,5,0.15) 25%,
            rgba(5,5,5,0.2) 55%,
            rgba(5,5,5,0.88) 100%
        );
}

/* Cinematic Vignette */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(5,5,5,0.5) 100%);
    pointer-events: none;
}

/* Film Grain Texture */
.hero-grain {
    position: absolute;
    inset: -50%;
    z-index: 4;
    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.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    opacity: 0.4;
    pointer-events: none;
    animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5%, -5%); }
    50% { transform: translate(5%, 5%); }
    75% { transform: translate(-5%, 5%); }
    100% { transform: translate(5%, -5%); }
}

/* Ambient Glow - Cursor Following */
.hero-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    z-index: 3;
    background: radial-gradient(circle, rgba(196,169,125,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: left 0.8s var(--ease-smooth), top 0.8s var(--ease-smooth);
    will-change: left, top;
}

/* Floating Gold Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: var(--opacity, 0.6);
    }
    90% {
        opacity: var(--opacity, 0.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* Decorative Corner Frame */
.hero-frame {
    position: absolute;
    inset: 24px;
    z-index: 4;
    pointer-events: none;
}

.hf-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
}

.hf-corner::before,
.hf-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    opacity: 0.3;
}

.hf-tl { top: 0; left: 0; }
.hf-tl::before { top: 0; left: 0; width: 40px; height: 1px; }
.hf-tl::after { top: 0; left: 0; width: 1px; height: 40px; }

.hf-tr { top: 0; right: 0; }
.hf-tr::before { top: 0; right: 0; width: 40px; height: 1px; }
.hf-tr::after { top: 0; right: 0; width: 1px; height: 40px; }

.hf-bl { bottom: 0; left: 0; }
.hf-bl::before { bottom: 0; left: 0; width: 40px; height: 1px; }
.hf-bl::after { bottom: 0; left: 0; width: 1px; height: 40px; }

.hf-br { bottom: 0; right: 0; }
.hf-br::before { bottom: 0; right: 0; width: 40px; height: 1px; }
.hf-br::after { bottom: 0; right: 0; width: 1px; height: 40px; }

/* Slide Caption - Left Side */
.hero-slide-caption {
    position: absolute;
    left: 40px;
    bottom: 140px;
    z-index: 12;
    opacity: 0;
}

.hsc-text {
    display: none;
    font-family: var(--font-editorial);
    font-size: 14px;
    font-style: italic;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.25);
    writing-mode: vertical-lr;
    text-transform: uppercase;
}

.hsc-text.active {
    display: block;
    animation: captionReveal 0.6s var(--ease-out) forwards;
}

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

/* Vertical Text Labels */
.hero-vertical-text {
    position: absolute;
    z-index: 12;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    writing-mode: vertical-lr;
    opacity: 0;
}

.hero-vt-left {
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

/* Hero Content - Centered */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    width: 100%;
    max-width: 900px;
}

.hero-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Premium Badge */
.hero-badge {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.badge-ring {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 28px 10px 20px;
    border: 1px solid rgba(196,169,125,0.25);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(196,169,125,0.05);
    animation: badgeGlow 4s ease infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(196,169,125,0), border-color: rgba(196,169,125,0.25); }
    50% { box-shadow: 0 0 30px rgba(196,169,125,0.08); border-color: rgba(196,169,125,0.4); }
}

.badge-star {
    display: flex;
    gap: 3px;
}

.badge-star i {
    font-size: 11px;
    color: var(--accent);
    filter: drop-shadow(0 0 6px rgba(196,169,125,0.6));
    animation: starTwinkle 3s ease infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

.badge-star i:nth-child(1) { --i: 0; }
.badge-star i:nth-child(2) { --i: 1; }
.badge-star i:nth-child(3) { --i: 2; }
.badge-star i:nth-child(4) { --i: 3; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.badge-text {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
}

/* Main Title - Premium Typography */
.hero-title {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
    perspective: 800px;
}

.ht-letter {
    font-family: var(--font-display);
    font-size: clamp(80px, 14vw, 160px);
    font-weight: 700;
    color: var(--white);
    line-height: 0.9;
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) rotateX(25deg);
    text-shadow:
        0 0 40px rgba(196,169,125,0.15),
        0 4px 8px rgba(0,0,0,0.3);
    position: relative;
}

.ht-letter::after {
    content: attr(data-letter);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--white) 0%,
        var(--accent-light) 25%,
        var(--white) 50%,
        var(--accent-light) 75%,
        var(--white) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 6s ease infinite;
}

@keyframes titleShimmer {
    0% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

/* Ornamental Divider */
.hero-ornament {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    opacity: 0;
    transform: scale(0.8);
}

.ho-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.ho-line-left {
    width: 0;
    animation: lineExpandLeft 1.5s var(--ease-out) 1.5s forwards;
}

.ho-line-right {
    width: 0;
    animation: lineExpandRight 1.5s var(--ease-out) 1.5s forwards;
}

@keyframes lineExpandLeft {
    to { width: 80px; }
}

@keyframes lineExpandRight {
    to { width: 80px; }
}

.ho-diamond {
    color: var(--accent);
    font-size: 10px;
    filter: drop-shadow(0 0 8px rgba(196,169,125,0.5));
    animation: diamondPulse 3s ease infinite;
}

@keyframes diamondPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Tagline */
.hero-tagline {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    justify-content: center;
}

.ht-word {
    font-family: var(--font-editorial);
    font-size: clamp(26px, 3.5vw, 42px);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.ht-word.italic {
    font-style: italic;
    letter-spacing: 8px;
}

.ht-amp {
    font-family: var(--font-editorial);
    font-size: clamp(22px, 3vw, 36px);
    color: var(--accent);
    font-style: italic;
    filter: drop-shadow(0 0 12px rgba(196,169,125,0.3));
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    margin-bottom: 44px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(15px);
    letter-spacing: 0.5px;
}

/* Hero CTAs - Premium Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(15px);
    justify-content: center;
    margin-bottom: 36px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 30px rgba(196,169,125,0.3),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.12) 55%,
        transparent 60%
    );
    animation: btnShimmer 4s ease infinite;
}

@keyframes btnShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: transform 0.4s var(--ease-spring);
}

.btn-hero-primary:hover .btn-icon {
    transform: translate(3px, -3px);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 40px rgba(196,169,125,0.5),
        0 0 80px rgba(196,169,125,0.15);
}

.btn-hero-primary:active {
    transform: translateY(0) scale(0.97);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 20px 48px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    border-radius: 100px;
    transition: all 0.5s var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
}

.btn-hero-outline .btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: transform 0.4s var(--ease-spring);
}

.btn-hero-outline:hover .btn-icon {
    transform: translate(3px, -3px);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.06);
}

.btn-hero-outline:active {
    transform: translateY(0) scale(0.97);
}

/* Location Tag */
.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.hl-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    animation: locationPulse 2s ease infinite;
}

.hl-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: locationRing 2s ease infinite;
}

@keyframes locationPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes locationRing {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero-location i {
    color: var(--accent);
    font-size: 14px;
    opacity: 0.5;
}

/* Side Info Panel */
.hero-side-info {
    position: absolute;
    right: 40px;
    bottom: 140px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
}

.hero-slide-progress {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.hsp-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    transition: height 0.3s linear;
    box-shadow: 0 0 8px rgba(196,169,125,0.5);
}

.hero-slide-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hsn-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
}

.hsn-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(196,169,125,0.3);
    transform: scale(1.1);
}

.hero-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
}

.hc-sep {
    width: 12px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    display: block;
}

.hc-total {
    opacity: 0.35;
    font-size: 12px;
}

/* Scroll Indicator - Mouse Animation */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.hero-scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* Hero Booking Widget - Dark Luxury Card */
.hero-booking {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 var(--container-pad);
}

.bf-guarantee {
    max-width: 1340px;
    margin: 0 auto 0;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bf-guarantee i {
    font-size: 14px;
}

.booking-form {
    max-width: 1340px;
    margin: 0 auto;
    background: rgba(15, 12, 8, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    box-shadow:
        0 -10px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(196, 169, 125, 0.15),
        0 0 80px rgba(196, 169, 125, 0.05);
    border: 1px solid rgba(196, 169, 125, 0.2);
    border-bottom: none;
}

.bf-group {
    flex: 1;
    padding: 20px 24px;
}

.bf-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.bf-group input,
.bf-group select {
    width: 100%;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    cursor: pointer;
}

.bf-group input:focus,
.bf-group select:focus {
    color: var(--accent-light);
}

.bf-group input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.7) sepia(1) hue-rotate(10deg) saturate(3);
}

.bf-group select option {
    background: #1a1714;
    color: var(--white);
}

.bf-divider {
    width: 1px;
    height: 40px;
    background: rgba(196, 169, 125, 0.15);
    flex-shrink: 0;
}

.bf-submit {
    flex-shrink: 0;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 18px 36px;
    background: linear-gradient(135deg, #C4A97D 0%, #8B7355 50%, #C4A97D 100%);
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    margin: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(196, 169, 125, 0.3);
}

.bf-submit:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 30px rgba(196, 169, 125, 0.5);
    transform: translateY(-1px);
}

.bf-arrow {
    transition: transform 0.3s var(--ease-spring);
}

.bf-submit:hover .bf-arrow {
    transform: translateX(4px);
}

/* Trust Strip */
.bf-trust-strip {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 24px;
    background: rgba(10, 8, 5, 0.95);
    border-left: 1px solid rgba(196, 169, 125, 0.1);
    border-right: 1px solid rgba(196, 169, 125, 0.1);
}

.bf-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.bf-trust-item i {
    color: var(--accent);
    font-size: 14px;
}

.bf-trust-sep {
    width: 4px;
    height: 4px;
    background: rgba(196, 169, 125, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Hero Price Teaser */
.hero-price-teaser {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    background: rgba(196, 169, 125, 0.1);
    border: 1px solid rgba(196, 169, 125, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
}

.hpt-label {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hpt-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.hpt-unit {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* Hero Urgency Text */
.hero-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF6B6B;
    opacity: 0;
    transform: translateY(10px);
    animation: urgencyPulse 2s ease infinite;
}

.hero-urgency i {
    font-size: 14px;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* =================== SHARED SECTION STYLES =================== */
.section-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 16px;
}

.section-label.center {
    display: block;
    text-align: center;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-heading.center {
    text-align: center;
}

.section-heading em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--primary);
}

.section-subtext {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.section-header-split .section-subtext {
    text-align: right;
    margin: 0;
    max-width: 400px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--text), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.btn-primary span, .btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary.full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    transition: all 0.3s var(--ease);
}

.btn-link i {
    transition: transform 0.3s var(--ease);
}

.btn-link:hover {
    color: var(--text);
}

.btn-link:hover i {
    transform: translateX(4px);
}

.btn-link.secondary {
    color: var(--muted);
}

.btn-link.secondary:hover {
    color: var(--primary);
}

/* =================== ABOUT: EDITORIAL MAGAZINE LAYOUT =================== */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.about-pullquote {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.pullquote-mark {
    font-family: var(--font-editorial);
    font-size: 120px;
    color: var(--accent);
    opacity: 0.2;
    line-height: 0.5;
    display: block;
    margin-bottom: -20px;
}

.pullquote-text {
    font-family: var(--font-editorial);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
}

.pq-word {
    display: inline-block;
    overflow: hidden;
}

.pq-word em {
    font-style: italic;
    color: var(--primary);
}

.about-editorial {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.about-img-1 {
    width: 65%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 50%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.about-img-3 {
    width: 35%;
    height: 35%;
    top: 15%;
    right: 10%;
    z-index: 1;
    opacity: 0.7;
}

.about-experience-badge {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.aeb-icon {
    display: block;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 4px;
}

.aeb-text {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.aeb-sub {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.about-content {
    padding-right: 40px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

/* =================== FEATURES MARQUEE =================== */
.marquee-strip {
    padding: 20px 0;
    background: var(--text);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-content i {
    color: var(--accent);
    font-size: 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =================== STAY / ROOMS: INTERACTIVE TAB SELECTOR =================== */
.stay-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.room-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: var(--bg-warm);
    border-radius: 100px;
    padding: 6px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.room-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.room-tab .rt-num {
    font-size: 11px;
    opacity: 0.5;
}

.room-tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
}

.room-tab.active .rt-num {
    opacity: 0.7;
}

.room-tab:not(.active):hover {
    background: var(--bg-cream);
}

.room-panels {
    position: relative;
}

.room-panel {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
    animation: panelFadeIn 0.5s var(--ease-out);
}

.room-panel.active {
    display: grid;
}

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

.rp-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
}

.rp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.rp-image:hover img {
    transform: scale(1.05);
}

.rp-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: var(--white);
    color: var(--text);
    border-radius: 100px;
}

.rp-tag.gold {
    background: var(--accent);
    color: var(--white);
}

.rp-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.rp-type {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.rp-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.rp-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.rp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.rp-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--text-light);
}

.rp-meta i {
    color: var(--accent);
}

.rp-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.rpa-item {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    transition: all 0.3s var(--ease-spring);
    position: relative;
    cursor: default;
    background: var(--bg-warm);
}

.rpa-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.rpa-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 12px;
    background: var(--text);
    color: var(--white);
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.rpa-item:hover::after {
    opacity: 1;
}

.rp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.rpp-from {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rpp-amount {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.rpp-night {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--muted);
}

/* =================== DINING: PREMIUM MAGAZINE PAGES =================== */
.dining-section {
    padding: 0;
    background: #0a0806;
}

/* Dining Header */
.dining-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #0a0806 100%);
}

.dining-hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 24px;
}

.dining-hero-title em {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.dining-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dining Page - Full-screen immersive layout */
.dining-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.dining-page:hover .dp-bg {
    transform: scale(1.03);
}

.dp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 8, 6, 0.92) 0%,
        rgba(10, 8, 6, 0.75) 40%,
        rgba(10, 8, 6, 0.3) 70%,
        rgba(10, 8, 6, 0.15) 100%
    );
}

.dp-reversed .dp-overlay {
    background: linear-gradient(
        -90deg,
        rgba(10, 8, 6, 0.92) 0%,
        rgba(10, 8, 6, 0.75) 40%,
        rgba(10, 8, 6, 0.3) 70%,
        rgba(10, 8, 6, 0.15) 100%
    );
}

.dp-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.dp-inner {
    max-width: 520px;
}

.dp-reversed .dp-inner {
    margin-left: auto;
}

/* Large background number */
.dp-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 140px);
    font-weight: 800;
    color: rgba(196, 169, 125, 0.08);
    line-height: 1;
    margin-bottom: -20px;
    letter-spacing: -4px;
}

/* Venue type label */
.dp-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4A97D;
    background: rgba(196, 169, 125, 0.12);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(196, 169, 125, 0.15);
    margin-bottom: 24px;
}

.dp-type i {
    font-size: 14px;
}

/* Venue name */
.dp-name {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 8px;
}

/* Cuisine label */
.dp-cuisine {
    font-family: var(--font-editorial);
    font-size: clamp(16px, 1.5vw, 22px);
    font-style: italic;
    color: rgba(196, 169, 125, 0.7);
    margin-bottom: 24px;
    display: block;
}

/* Description */
.dp-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 32px;
}

/* Meta items grid */
.dp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.dp-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 140px;
}

.dp-meta-item i {
    font-size: 20px;
    color: #C4A97D;
    margin-top: 2px;
    flex-shrink: 0;
}

.dp-meta-item strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.dp-meta-item span {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Actions */
.dp-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.dp-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dp-menu-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C4A97D;
    transition: width 0.3s ease;
}

.dp-menu-link:hover {
    color: #C4A97D;
}

.dp-menu-link:hover::after {
    width: 100%;
}

.dp-menu-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.dp-menu-link:hover i {
    transform: translate(3px, -3px);
}

/* Divider between venues */
.dining-page + .dining-page {
    border-top: 1px solid rgba(196, 169, 125, 0.1);
}

/* =================== AMENITIES: BENTO GRID LAYOUT =================== */
.amenities-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-warm);
    transition: all 0.5s var(--ease-out);
    cursor: default;
    border: 1px solid rgba(0,0,0,0.04);
}

.bento-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease);
}

.bento-card:hover .bc-bg {
    transform: scale(1.05);
}

.bc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
}

.bc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.bc-content i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 12px;
}

.bento-card:not(.bento-large):not(.bento-wide):not([data-amenity="spa"]) .bc-content i {
    color: var(--primary);
}

.bc-content h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.bento-large .bc-content h4,
.bento-wide .bc-content h4,
[data-amenity="spa"] .bc-content h4 {
    color: var(--white);
}

.bc-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0;
    max-height: 0;
    transition: all 0.4s var(--ease);
}

.bento-card:hover .bc-content p {
    opacity: 1;
    max-height: 60px;
    margin-top: 6px;
}

.bento-large .bc-content p,
.bento-wide .bc-content p,
[data-amenity="spa"] .bc-content p {
    color: rgba(255,255,255,0.7);
    opacity: 1;
    max-height: none;
}

/* =================== GALLERY: MASONRY WITH LIGHTBOX =================== */
.gallery-section {
    padding: var(--section-pad) 0;
    background: var(--bg-warm);
}

.gallery-masonry {
    columns: 4;
    column-gap: 16px;
    padding: 0 var(--container-pad);
    max-width: 1340px;
    margin: 0 auto;
}

.gm-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease-out);
}

.gm-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.gm-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease);
}

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

.gm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gm-item:hover .gm-overlay {
    opacity: 1;
}

.gm-cat {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.gm-overlay h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

/* =================== TESTIMONIALS: ROTATING QUOTE WALL =================== */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2520 50%, #1A1A1A 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.test-header .section-label {
    color: var(--accent);
}

.test-rating-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trb-score {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.trb-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.trb-stars i {
    color: var(--accent);
    font-size: 16px;
}

.trb-info span {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.test-quotes {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
}

.test-quote {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.test-quote.active {
    opacity: 1;
    position: relative;
}

.tq-mark {
    font-size: 80px;
    color: var(--accent);
    opacity: 0.3;
    line-height: 0.6;
    margin-bottom: 24px;
}

.tq-text {
    font-family: var(--font-editorial);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

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

.tq-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.tq-author strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
}

.tq-author span {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.test-dot.active {
    background: var(--accent);
    width: 60px;
}

/* =================== LOCATION + CONTACT: SPLIT LAYOUT =================== */
.location-contact-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.lc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.lc-map-inner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    margin-bottom: 24px;
}

.lc-map-inner iframe {
    display: block;
}

.lc-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lci-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-warm);
    border-radius: var(--radius);
}

.lci-card i {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.lci-card strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.lci-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.lc-contact {
    padding-left: 20px;
}

.lc-intro {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.lc-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.lcc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--bg-warm);
    border-radius: 14px;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
}

.lcc-card:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: translateX(4px);
    box-shadow: var(--shadow-glow);
}

.lcc-card i {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    transition: color 0.3s;
}

.lcc-card:hover i {
    color: var(--white);
}

.lcc-card strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.lcc-card span {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s;
}

.lcc-card:hover span {
    color: rgba(255,255,255,0.8);
}

/* Contact Form */
.contact-form {
    background: var(--bg-warm);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
}

.cf-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cf-group {
    margin-bottom: 0;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.cf-group textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 16px;
}

/* =================== FOOTER: MINIMAL & ELEGANT =================== */
.footer {
    background: var(--text);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.fl-main {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--white);
}

.fl-sub {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 4px;
}

.ft-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ft-social {
    display: flex;
    gap: 12px;
}

.ft-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    transition: all 0.4s var(--ease-spring);
}

.ft-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.ft-col h4 {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.ft-col ul li {
    margin-bottom: 12px;
}

.ft-col ul a {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.ft-col ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.ft-col ul a i {
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.fb-links {
    display: flex;
    gap: 24px;
}

.fb-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}

.fb-links a:hover {
    color: var(--accent);
}

/* =================== LIGHTBOX =================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s;
}

.lb-close:hover {
    background: var(--white);
    color: var(--text);
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-prev:hover, .lb-next:hover {
    background: var(--white);
    color: var(--text);
}

.lb-counter {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    z-index: 10;
}

.lb-img-wrap {
    max-width: 85vw;
    max-height: 85vh;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease);
}

.lightbox.active .lb-img-wrap img {
    transform: scale(1);
}

/* =================== SPECIAL OFFER RIBBON =================== */
.offer-ribbon {
    position: relative;
    z-index: 19;
    background: linear-gradient(135deg, #1a1714 0%, #2a2520 50%, #1a1714 100%);
    border-bottom: 1px solid rgba(196, 169, 125, 0.15);
    overflow: hidden;
}

.offer-ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 169, 125, 0.06) 50%, transparent 100%);
    animation: ribbonShimmer 3s ease infinite;
}

@keyframes ribbonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.offer-ribbon-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 14px var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offer-ribbon-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.offer-ribbon-badge {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent), #D4BF9A);
    color: #1a1714;
    border-radius: 4px;
}

.offer-ribbon-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.offer-ribbon-cta {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s var(--ease);
    padding: 6px 16px;
    border: 1px solid rgba(196, 169, 125, 0.3);
    border-radius: 100px;
}

.offer-ribbon-cta:hover {
    background: var(--accent);
    color: #1a1714;
    border-color: var(--accent);
}

.offer-ribbon-close {
    position: absolute;
    right: var(--container-pad);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 16px;
}

.offer-ribbon-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.offer-ribbon.dismissed {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    transition: all 0.4s var(--ease);
}

/* =================== ROOM CONVERSION UPGRADES =================== */
.rp-urgency {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: rgba(255, 80, 80, 0.9);
    color: var(--white);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    animation: urgencyBlink 2s ease infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.rp-popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: linear-gradient(135deg, #C4A97D, #D4BF9A);
    color: #1a1714;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(196, 169, 125, 0.4);
    z-index: 2;
}

.rpp-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.rpp-old {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
}

.rpp-save {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    color: #4CAF50;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.btn-book-gold {
    background: linear-gradient(135deg, #C4A97D 0%, #8B7355 50%, #C4A97D 100%) !important;
    background-size: 200% 200% !important;
    box-shadow: 0 4px 20px rgba(196, 169, 125, 0.3);
}

.btn-book-gold:hover {
    background-position: 100% 100% !important;
    box-shadow: 0 6px 30px rgba(196, 169, 125, 0.5) !important;
}

/* =================== WHATSAPP FLOATING ACTION BUTTON =================== */
.whatsapp-fab {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 996;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-fab-tooltip {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    background: var(--white);
    color: var(--text);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
}

.whatsapp-fab-tooltip::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background: var(--white);
    transform: rotate(45deg);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-fab-btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-spring);
    position: relative;
    z-index: 2;
}

.whatsapp-fab:hover .whatsapp-fab-btn {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab-pulse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 16px;
    z-index: 1;
    animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* =================== BOOKING SUCCESS MODAL =================== */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99995;
    background: rgba(10, 8, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    padding: 20px;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: linear-gradient(145deg, #1a1714 0%, #0f0d0a 100%);
    border: 1px solid rgba(196, 169, 125, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(196, 169, 125, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s var(--ease-spring);
}

.booking-modal-overlay.active .booking-modal {
    transform: scale(1) translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    font-size: 18px;
}

.booking-modal-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.booking-modal-icon {
    position: relative;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.bm-check {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), #D4BF9A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1a1714;
    animation: checkPop 0.5s var(--ease-spring) 0.3s both;
    box-shadow: 0 8px 30px rgba(196, 169, 125, 0.3);
}

@keyframes checkPop {
    0% { transform: scale(0); }
    80% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.bm-confetti {
    position: absolute;
    inset: -40px;
    pointer-events: none;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    animation: confettiFall 1.5s var(--ease-out) forwards;
}

@keyframes confettiFall {
    0% { transform: translate(0, 0) rotate(0deg) scale(0); opacity: 1; }
    50% { opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(1); opacity: 0; }
}

.booking-modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.booking-modal-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.booking-modal-text strong {
    color: var(--accent);
}

.booking-modal-details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 169, 125, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
}

.booking-modal-details:empty {
    display: none;
}

.booking-modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.bm-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.bm-call {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.bm-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.bm-done {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(196, 169, 125, 0.3);
}

.bm-done:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(196, 169, 125, 0.4);
}

.booking-modal-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.booking-modal-trust i {
    color: var(--accent);
    font-size: 14px;
}

/* =================== CONTACT FORM PREMIUM UPGRADE =================== */
.contact-form-premium {
    background: linear-gradient(145deg, #1a1714 0%, #0f0d0a 100%);
    border: 1px solid rgba(196, 169, 125, 0.15);
    box-shadow:
        0 16px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(196, 169, 125, 0.1);
}

.contact-form-premium .cf-title {
    color: var(--white);
}

.contact-form-premium .cf-group input,
.contact-form-premium .cf-group select,
.contact-form-premium .cf-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(196, 169, 125, 0.15);
    color: var(--white);
}

.contact-form-premium .cf-group input:focus,
.contact-form-premium .cf-group select:focus,
.contact-form-premium .cf-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(196, 169, 125, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form-premium .cf-group select option {
    background: #1a1714;
    color: var(--white);
}

/* Floating Labels */
.cf-float {
    position: relative;
}

.cf-float label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.cf-float input:focus + label,
.cf-float input:not(:placeholder-shown) + label,
.cf-float textarea:focus + label,
.cf-float textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    transform: translateY(0);
}

.cf-float textarea + label {
    top: 16px;
    transform: translateY(0);
}

.cf-float textarea:focus + label,
.cf-float textarea:not(:placeholder-shown) + label {
    top: 4px;
}

.cf-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.cf-trust i {
    color: var(--accent);
    font-size: 14px;
}

/* =================== SECTION DIVIDERS =================== */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stay-section {
    position: relative;
}

.stay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.amenities-section {
    position: relative;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.gallery-section {
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.location-contact-section {
    position: relative;
}

.location-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* =================== BACK TO TOP =================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    z-index: 997;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* =================== MOBILE BOTTOM NAVIGATION =================== */
.mobile-bottom-nav {
    display: none;
}

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-side-info {
        right: 20px;
        bottom: 120px;
    }

    .hero-frame {
        inset: 16px;
    }

    .hf-corner::before { width: 30px; }
    .hf-corner::after { height: 30px; }

    .booking-form {
        flex-wrap: wrap;
    }

    .bf-group {
        min-width: 140px;
    }

    .bf-divider:nth-child(4) {
        display: none;
    }

    .about-editorial {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 450px;
    }

    .about-content {
        padding-right: 0;
    }

    .room-panel {
        grid-template-columns: 1fr;
    }

    .rp-image {
        min-height: 350px;
    }

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

    .lc-contact {
        padding-left: 0;
    }

    .dining-header {
        padding: 80px 0 60px;
    }

    .dp-inner {
        max-width: 480px;
    }

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

    .gallery-masonry {
        columns: 3;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header-split .section-subtext {
        text-align: left;
    }

    /* Mobile Menu - Slide-in Panel */
    .nav-menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s var(--ease);
    }

    .nav-menu-backdrop.open {
        display: block;
        opacity: 1;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--bg-dark);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        z-index: 999;
        padding: 0;
        overflow-y: auto;
        transition: transform 0.4s var(--ease-out);
        border-left: 1px solid rgba(255,255,255,0.08);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-menu.open {
        transform: translateX(-320px);
    }

    .nav-menu .nav-link i,
    .nav-menu-header,
    .nav-menu-cta {
        display: block;
    }

    .nav-menu-header {
        padding: 32px 28px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        margin-bottom: 8px;
    }

    .nmh-logo {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 6px;
        display: block;
    }

    .nmh-sub {
        font-family: var(--font-ui);
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--accent);
        display: block;
        margin-top: 4px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu .nav-link {
        font-size: 15px;
        color: rgba(255,255,255,0.7);
        padding: 14px 28px;
        display: flex;
        align-items: center;
        gap: 14px;
        transition: all 0.3s var(--ease);
        border-left: 3px solid transparent;
    }

    .nav-menu .nav-link i {
        display: inline-block;
        font-size: 20px;
        color: var(--accent);
        width: 24px;
        text-align: center;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--white);
        background: rgba(255,255,255,0.05);
        border-left-color: var(--accent);
    }

    .nav-menu-cta {
        margin-top: auto;
        padding: 24px 28px 32px;
        border-top: 1px solid rgba(255,255,255,0.08);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .nmc-phone {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-ui);
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        padding: 12px 18px;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        transition: all 0.3s;
    }

    .nmc-phone i {
        color: var(--accent);
    }

    .nmc-phone:hover {
        background: rgba(255,255,255,0.1);
        color: var(--white);
    }

    .nmc-book {
        font-family: var(--font-ui);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        padding: 14px 24px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: var(--white);
        border-radius: 12px;
        transition: all 0.3s;
    }

    .nmc-book:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .nav-phone span {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

    .sticky-cta-text {
        display: none;
    }

    /* Offer Ribbon Tablet */
    .offer-ribbon-content {
        gap: 12px;
    }

    .offer-ribbon-text {
        font-size: 13px;
    }

    /* Trust Strip Tablet */
    .bf-trust-strip {
        flex-wrap: wrap;
        gap: 12px;
    }

    .bf-trust-sep:nth-child(4) {
        display: none;
    }
}

/* Mobile - App-Like Experience */
@media (max-width: 768px) {
    :root {
        --section-pad: clamp(48px, 8vw, 80px);
    }

    body {
        padding-bottom: calc(var(--bottom-nav-height) + var(--safe-bottom));
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 997;
        height: calc(var(--bottom-nav-height) + var(--safe-bottom));
        padding-bottom: var(--safe-bottom);
        background: var(--glass);
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
        border-top: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 -4px 30px rgba(0,0,0,0.06);
        align-items: center;
        justify-content: space-around;
        transition: transform 0.35s var(--ease-out);
    }

    .mobile-bottom-nav.hidden {
        transform: translateY(100%);
    }

    .mbn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        min-width: 56px;
        color: var(--muted);
        transition: all 0.3s var(--ease);
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }

    .mbn-item i {
        font-size: 22px;
        transition: all 0.3s var(--ease-spring);
    }

    .mbn-item span {
        font-family: var(--font-ui);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .mbn-item.active {
        color: var(--primary);
    }

    .mbn-item.active i {
        transform: translateY(-2px) scale(1.1);
    }

    .mbn-item.active::before {
        content: '';
        position: absolute;
        top: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
    }

    /* Center Book Button */
    .mbn-book {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        -webkit-tap-highlight-color: transparent;
    }

    .mbn-book-inner {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
        box-shadow: 0 4px 20px rgba(196, 169, 125, 0.4);
        transition: all 0.3s var(--ease-spring);
    }

    .mbn-book-inner i {
        font-size: 22px;
        color: var(--white);
    }

    .mbn-book span {
        font-family: var(--font-ui);
        font-size: 10px;
        font-weight: 600;
        color: var(--primary);
        letter-spacing: 0.5px;
    }

    .mbn-book:active .mbn-book-inner {
        transform: scale(0.92);
    }

    /* Hide desktop-only elements */
    .sticky-cta {
        display: none !important;
    }

    .back-to-top {
        bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 12px);
        left: 16px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Hero - Mobile App Premium */
    .hero-frame {
        inset: 10px;
    }

    .hf-corner::before { width: 20px; }
    .hf-corner::after { height: 20px; }

    .hero-grain {
        opacity: 0.25;
    }

    .hero-ambient-glow {
        display: none;
    }

    .hero-vertical-text {
        display: none;
    }

    .hero-slide-caption {
        display: none;
    }

    .ht-letter {
        font-size: clamp(52px, 16vw, 80px);
    }

    .hero-subtitle {
        font-size: 13px;
        max-width: 300px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 10px;
    }

    .hero-side-info {
        right: 14px;
        bottom: 100px;
    }

    .hero-slide-progress {
        height: 40px;
    }

    .hsn-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .hero-counter {
        font-size: 10px;
    }

    .hero-location {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .badge-ring {
        padding: 8px 20px 8px 16px;
    }

    .badge-text {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .badge-star i {
        font-size: 9px;
    }

    @keyframes lineExpandLeft { to { width: 40px; } }
    @keyframes lineExpandRight { to { width: 40px; } }

    /* Booking Form - Card Style */
    .hero-booking {
        padding: 0 16px;
    }

    .bf-guarantee {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .booking-form {
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .bf-divider {
        width: 100%;
        height: 1px;
        background: rgba(196, 169, 125, 0.1);
    }

    .bf-group {
        padding: 14px 0;
    }

    .bf-group input,
    .bf-group select {
        font-size: 16px; /* Prevents iOS zoom */
    }

    .bf-submit {
        width: 100%;
        justify-content: center;
        margin: 12px 0 0;
        padding: 16px;
        border-radius: 14px;
        font-size: 13px;
    }

    /* Trust Strip Mobile */
    .bf-trust-strip {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .bf-trust-sep {
        display: none;
    }

    .bf-trust-item {
        font-size: 10px;
    }

    /* Offer Ribbon Mobile */
    .offer-ribbon-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .offer-ribbon-text {
        font-size: 12px;
    }

    .offer-ribbon-close {
        top: 8px;
        right: 8px;
        position: absolute;
    }

    /* Hero Price Teaser Mobile */
    .hero-price-teaser {
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .hpt-price {
        font-size: 18px;
    }

    /* WhatsApp FAB Mobile */
    .whatsapp-fab {
        bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 16px);
        right: 16px;
    }

    .whatsapp-fab-tooltip {
        display: none;
    }

    .whatsapp-fab-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        border-radius: 14px;
    }

    .whatsapp-fab-pulse {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    /* Booking Modal Mobile */
    .booking-modal {
        padding: 36px 24px;
    }

    .booking-modal-title {
        font-size: 22px;
    }

    .booking-modal-actions {
        flex-direction: column;
    }

    /* Room Urgency Mobile */
    .rp-urgency {
        font-size: 10px;
        padding: 6px 12px;
    }

    .rp-popular-badge {
        font-size: 9px;
        padding: 8px 14px;
    }

    .rpp-old {
        font-size: 14px;
    }

    .rpp-save {
        font-size: 10px;
    }

    /* About Section - App Cards */
    .pullquote-text {
        font-size: clamp(24px, 6vw, 32px);
    }

    .about-pullquote {
        margin-bottom: 48px;
    }

    .about-images {
        height: 320px;
        margin: 0 -8px;
    }

    .about-stats {
        gap: 16px;
        padding: 24px 0;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        padding: 16px 8px;
        background: var(--bg-cream);
        border-radius: 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* Room Tabs - Horizontal Scroll */
    .room-tabs {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-radius: var(--radius-xl);
        padding: 5px;
        gap: 4px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .room-tabs::-webkit-scrollbar {
        display: none;
    }

    .room-tab {
        border-radius: 14px;
        padding: 12px 20px;
        white-space: nowrap;
        flex: 0 0 auto;
        font-size: 12px;
    }

    .rp-image {
        min-height: 280px;
        border-radius: var(--radius-xl);
    }

    .rp-details {
        padding: 24px 4px 8px;
    }

    .rp-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .rp-footer .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Dining - Premium Pages */
    .dining-page {
        min-height: 80vh;
    }

    .dp-overlay,
    .dp-reversed .dp-overlay {
        background: linear-gradient(
            0deg,
            rgba(10, 8, 6, 0.95) 0%,
            rgba(10, 8, 6, 0.8) 50%,
            rgba(10, 8, 6, 0.4) 100%
        );
    }

    .dp-inner,
    .dp-reversed .dp-inner {
        max-width: 100%;
        margin-left: 0;
    }

    .dp-content {
        padding: 60px 0;
        display: flex;
        align-items: flex-end;
    }

    .dp-number {
        font-size: 60px;
        margin-bottom: -10px;
    }

    .dp-name {
        font-size: 32px;
    }

    .dp-meta {
        padding: 20px;
        gap: 16px;
    }

    .dp-meta-item {
        min-width: 120px;
    }

    .dp-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dining-header {
        padding: 60px 0 40px;
    }

    /* Bento Grid - App Cards */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-card {
        border-radius: var(--radius-xl);
    }

    .bc-content {
        padding: 20px;
    }

    .bc-content i {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .bc-content h4 {
        font-size: 16px;
    }

    .bc-content p {
        font-size: 12px;
        opacity: 1;
        max-height: none;
    }

    .bento-card:not(.bento-large):not(.bento-wide):not([data-amenity="spa"]) .bc-content p {
        opacity: 0.7;
        max-height: none;
    }

    /* Gallery - App Grid */
    .gallery-masonry {
        columns: 2;
        column-gap: 8px;
        padding: 0 16px;
    }

    .gm-item {
        margin-bottom: 8px;
        border-radius: 14px;
    }

    .gm-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26,26,26,0.6) 0%, transparent 50%);
        padding: 16px;
    }

    .gm-cat {
        font-size: 9px;
    }

    .gm-overlay h4 {
        font-size: 14px;
    }

    /* Testimonials - Card Style */
    .test-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .test-quotes {
        min-height: auto;
    }

    .tq-text {
        font-size: clamp(18px, 4vw, 24px);
    }

    .test-dots {
        justify-content: center;
    }

    /* Contact - App Form */
    .cf-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
        border-radius: var(--radius-xl);
    }

    .cf-group input,
    .cf-group select,
    .cf-group textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 16px 18px;
        border-radius: 14px;
    }

    .lc-map-inner {
        border-radius: var(--radius-xl);
        height: 300px;
    }

    .lci-card {
        border-radius: 14px;
    }

    .lcc-card {
        border-radius: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-bottom: 8px;
    }

    .fb-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Section headers */
    .section-header-center {
        margin-bottom: 36px;
    }

    .section-subtext {
        font-size: 15px;
    }

    /* Lightbox Mobile */
    .lb-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .lb-prev, .lb-next {
        width: 40px;
        height: 40px;
    }

    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }

    .lb-img-wrap {
        max-width: 95vw;
        max-height: 80vh;
    }

    /* Navbar mobile adjustments */
    .navbar {
        height: 64px;
    }

    .logo-main {
        font-size: 22px;
        letter-spacing: 4px;
    }

    .logo-sub {
        font-size: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ht-letter {
        font-size: clamp(44px, 14vw, 56px);
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-ctas {
        max-width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 10px;
        padding: 14px 24px;
    }

    .hero-side-info {
        right: 10px;
        bottom: 80px;
    }

    .badge-ring {
        padding: 7px 16px 7px 14px;
        gap: 8px;
    }

    .hero-frame {
        inset: 8px;
    }

    .about-img-3 {
        display: none;
    }

    .about-images {
        height: 260px;
    }

    .about-img-1 {
        width: 60%;
        height: 100%;
    }

    .about-img-2 {
        width: 50%;
        height: 60%;
    }

    .dining-page {
        min-height: 70vh;
    }

    .dp-name {
        font-size: 28px;
    }

    .dp-desc {
        font-size: 14px;
    }

    .dp-meta {
        padding: 16px;
        gap: 12px;
    }

    .dp-meta-item {
        min-width: 100%;
    }

    .dp-type {
        font-size: 10px;
        padding: 6px 14px;
    }

    .bento-grid {
        grid-auto-rows: 140px;
    }

    .bento-large {
        height: 180px;
    }

    .rpp-amount {
        font-size: 26px;
    }

    .section-heading {
        font-size: clamp(26px, 6vw, 36px);
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .ht-letter {
        font-size: 38px !important;
    }

    .hero-tagline {
        gap: 5px;
    }

    .ht-word {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .badge-ring {
        padding: 6px 14px;
        gap: 6px;
    }

    .badge-star i {
        font-size: 8px;
    }

    .badge-text {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-ornament {
        gap: 10px;
    }

    .mbn-item span,
    .mbn-book span {
        font-size: 9px;
    }

    .hero-frame {
        display: none;
    }

    .hero-side-info {
        display: none;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: 100vh;
    }

    .ht-letter {
        font-size: 48px !important;
    }

    .hero-ornament {
        margin-bottom: 6px;
    }

    .hero-subtitle {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .hero-frame,
    .hero-vertical-text,
    .hero-slide-caption {
        display: none;
    }

    .hero-ctas {
        flex-direction: row;
        margin-bottom: 16px;
    }

    .mobile-bottom-nav {
        height: 56px;
    }
}

/* 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-wheel,
    .marquee-content,
    .ho-diamond,
    .btn-shimmer,
    .hero-grain {
        animation: none;
    }

    .hero-particle {
        display: none;
    }

    .ho-line-left, .ho-line-right {
        width: 60px;
        animation: none;
    }
}

/* Dark mode for mobile status bar */
@media (prefers-color-scheme: dark) {
    meta[name="theme-color"] {
        content: #1A1A1A;
    }
}
