:root {
    --bg-primary: #0D0F10;
    --bg-card: #161819;
    --bg-card-hover: #1C1E20;
    --text-soft: #F5F5F2;
    --text-muted: #A3A3A3;
    --text-dim: #6B6B6B;
    --gold: #C6A969;
    --gold-light: #D4BF80;
    --gold-dark: #A88B4A;
    --green: #4E6A58;
    --green-light: #5F8070;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    --font-headline: 'Clash Display', 'General Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --nav-height: 72px;
}

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

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

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

::-webkit-scrollbar {
    width: 4px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}

::-moz-selection {
    background: rgba(198, 169, 105, 0.3);
    color: var(--text-soft);
}

::selection {
    background: rgba(198, 169, 105, 0.3);
    color: var(--text-soft);
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

input,
select,
textarea {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(198, 169, 105, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-dim);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A3A3A3' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10000;
    width: 0%;
    transition: width 0.15s linear;
}

#luxury-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#luxury-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-brand {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 12px;
    color: var(--text-soft);
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
    animation: loaderLine 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes loaderLine {
    to { width: 120px; }
}

.particles-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(198, 169, 105, 0.3);
    border-radius: 50%;
    animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

#weather-ticker {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background: rgba(22, 24, 25, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.weather-icon {
    font-size: 16px;
}

.weather-temp {
    color: var(--text-soft);
    font-weight: 500;
}

.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(22, 24, 25, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 18px;
}

.music-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.music-toggle.playing {
    color: var(--gold);
    border-color: var(--gold);
    animation: musicPulse 2s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(198, 169, 105, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(198, 169, 105, 0); }
}

/* ===== NAVBAR ===== */
.nav-floating {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1280px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

.nav-floating.hidden {
    transform: translateX(-50%) translateY(-120px);
    opacity: 0;
}

.nav-inner {
    background: rgba(13, 15, 16, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 0 16px 0 28px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.logo-text {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 6px;
}

.logo-sub {
    font-family: var(--font-serif);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    font-style: italic;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    border-radius: 20px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-soft);
    background: var(--glass-bg);
}

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

.nav-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-icon-btn:hover {
    color: var(--text-soft);
    background: var(--glass-bg);
}

.nav-lang {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--transition-fast);
}

.nav-lang:hover {
    color: var(--text-soft);
    background: var(--glass-bg);
}

.btn-book-nav {
    background: var(--gold);
    color: var(--bg-primary);
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(198, 169, 105, 0.25);
}

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

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-soft);
    transition: var(--transition-fast);
    transform-origin: center;
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.nav-mobile-toggle.active span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(13, 15, 16, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

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

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

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 160px 40px 120px;
}

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

.hero-bg-image {
    position: absolute;
    inset: -10%;
    background: url('../images/hotel/hotel1.webp') center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 15, 16, 0.4) 0%,
        rgba(13, 15, 16, 0.6) 50%,
        rgba(13, 15, 16, 0.95) 100%
    );
}

.hero-ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-ambient-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 169, 105, 0.3), transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-ambient-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 106, 88, 0.25), transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.badge-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.headline-light {
    display: block;
    font-weight: 300;
    color: var(--text-soft);
    letter-spacing: 0;
}

.headline-serif {
    display: block;
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    font-size: 1.15em;
    letter-spacing: 0;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(198, 169, 105, 0.3);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cta-secondary:hover {
    border-color: var(--border-hover);
    background: var(--glass-bg);
    transform: translateY(-2px);
}

.hero-booking-bar {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    width: 100%;
    max-width: 960px;
}

.booking-form {
    display: flex;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.booking-field {
    flex: 1;
    background: rgba(22, 24, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
}

.booking-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
    background: transparent;
    border: none;
    padding: 4px 0;
    font-size: 15px;
    color: var(--text-soft);
    font-weight: 400;
    width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
    box-shadow: none;
    background: transparent;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

.btn-search-room {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    min-width: 170px;
}

.btn-search-room:hover {
    background: var(--gold-light);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS COMMON ===== */
section {
    position: relative;
    z-index: 1;
    padding: 140px 40px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-soft);
    margin-bottom: 24px;
}

.title-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    display: inline;
}

.title-light {
    font-weight: 300;
    display: inline;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}

/* ===== ROOMS ===== */
.rooms-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-card) 100%);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.room-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.room-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.room-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.room-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 15, 16, 0.8) 100%);
    transition: var(--transition);
}

.room-card:hover .room-image-overlay {
    background: linear-gradient(180deg, rgba(13, 15, 16, 0.15) 50%, rgba(13, 15, 16, 0.9) 100%);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(198, 169, 105, 0.9);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.room-info {
    padding: 28px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.room-header h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.5px;
}

.room-price {
    font-size: 13px;
    color: var(--text-dim);
    text-align: right;
    line-height: 1.4;
}

.room-price em {
    font-family: var(--font-headline);
    font-style: normal;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
}

.room-details {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.room-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.room-amenities span {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.room-book-btn {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-align: center;
}

.room-book-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

/* ===== EXPERIENCE ===== */
.experience-section {
    overflow: hidden;
}

.experience-scroll {
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding-bottom: 10px;
}

.experience-scroll::-webkit-scrollbar {
    display: none;
}

.experience-scroll:active {
    cursor: grabbing;
}

.experience-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    width: max-content;
}

.exp-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.exp-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.exp-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.exp-card:hover .exp-image img {
    transform: scale(1.08);
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 15, 16, 0.85) 100%);
}

.exp-label {
    position: absolute;
    bottom: 60px;
    left: 24px;
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-soft);
    z-index: 2;
}

.exp-desc {
    padding: 20px 24px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    display: none;
}

.exp-card:hover .exp-desc {
    display: block;
}

.exp-card:hover .exp-label {
    bottom: 80px;
}

.exp-scroll-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.exp-scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.exp-scroll-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== STORY ===== */
.story-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
}

.story-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-image-frame {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius-lg) - 16px);
    pointer-events: none;
}

.story-floating-text {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
    background: var(--bg-primary);
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.story-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
}

.story-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sig-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    color: var(--text-soft);
}

.sig-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ===== GALLERY ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.gallery-filter.active,
.gallery-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198, 169, 105, 0.08);
}

.gallery-bento {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.bento-tall {
    grid-row: span 2;
}

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

.bento-hover {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.bento-item:hover .bento-hover {
    opacity: 1;
}

.bento-hover span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-soft);
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* ===== DINING ===== */
.dining-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-card) 100%);
}

.dining-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dining-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.dining-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.dining-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.dining-card:hover .dining-image img {
    transform: scale(1.08);
}

.dining-stars {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    color: var(--gold);
    background: rgba(13, 15, 16, 0.7);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.dining-info {
    padding: 24px;
}

.dining-info h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.dining-type {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dining-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.dining-hours {
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== STATS ===== */
.stats-section {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(198, 169, 105, 0.06) 0%, transparent 70%);
}

.stats-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-family: var(--font-headline);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    overflow: hidden;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 28px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-soft);
}

.author-loc {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

.testimonial-rating {
    margin-top: 16px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===== DESTINATION ===== */
.destination-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
}

.destination-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.dest-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.dest-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.dest-card:hover .dest-image img {
    transform: scale(1.08);
}

.dest-info {
    padding: 20px;
}

.dest-distance {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
}

.dest-info h3 {
    font-family: var(--font-headline);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-soft);
    margin: 6px 0 8px;
}

.dest-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== BOOKING CTA ===== */
.booking-section {
    position: relative;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
}

.booking-ambient {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(198, 169, 105, 0.1), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
}

.booking-container {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(22, 24, 25, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px;
}

.booking-container .section-title {
    text-align: center;
}

.booking-container .section-tag {
    display: block;
    text-align: center;
}

.booking-desc {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.booking-reserve-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.full-width {
    grid-column: 1 / -1;
}

.booking-input-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.booking-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 18px;
    font-size: 15px;
}

.booking-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-card) 100%);
}

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-map-col {
    position: relative;
}

.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 15, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
}

.map-overlay span {
    font-size: 13px;
    color: var(--text-soft);
}

/* ===== FOOTER ===== */
.footer-premium {
    position: relative;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 100px 40px 40px;
    overflow: hidden;
}

.footer-noise {
    position: absolute;
    inset: 0;
    background: 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");
    pointer-events: none;
    opacity: 0.5;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-headline);
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.015);
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 24px;
    letter-spacing: 8px;
}

.footer-logo .logo-sub {
    font-size: 11px;
    letter-spacing: 4px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 24px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

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

.footer-nav h4,
.footer-newsletter h4,
.footer-opening h4 {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-soft);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 13px;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--text-soft);
}

.footer-newsletter p {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.newsletter-form:focus-within {
    border-color: var(--gold);
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 0;
}

.newsletter-form input:focus {
    box-shadow: none;
    background: transparent;
}

.newsletter-btn {
    padding: 12px 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    border-radius: 0;
}

.newsletter-btn:hover {
    color: var(--gold);
}

.opening-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.opening-item:last-child {
    border-bottom: none;
}

.opening-label {
    color: var(--text-dim);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 48px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-dim);
    transition: var(--transition-fast);
}

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

/* ===== BOOKING MODAL ===== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 16, 0.8);
    backdrop-filter: blur(8px);
}

.booking-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-soft);
    border-color: var(--border-hover);
}

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

.modal-inner h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-soft);
    margin: 16px 0 8px;
}

.modal-inner p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-field {
    text-align: left;
}

.modal-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ===== BOOKING SUCCESS POPUP ===== */
.booking-success-popup {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 10001;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 28px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.booking-success-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.success-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.success-title {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-soft);
}

.success-inner p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 280px;
}
