/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #c9a96e;
    --gold-light: #d4b97a;
    --gold-dark: #b8944f;
    --dark: #1a1a1a;
    --dark-bg: #0d0d0d;
    --text: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --section-bg: #111111;
    --card-bg: #1e1e1e;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== LOADER ========== */
.loader {
    position: fixed; inset: 0;
    background: var(--dark-bg);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem; color: var(--gold);
    letter-spacing: 8px; margin-bottom: 30px;
}
.loader-bar {
    width: 200px; height: 2px;
    background: rgba(201,169,110,0.2);
    margin: 0 auto; position: relative; overflow: hidden;
}
.loader-bar::after {
    content: ''; position: absolute; left: -50%;
    width: 50%; height: 100%; background: var(--gold);
    animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide {
    0% { left: -50%; } 100% { left: 100%; }
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s ease;
}
.nav.scrolled {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-logo {
    display: flex; align-items: center; gap: 15px;
}
.nav-logo-icon {
    width: 50px; height: 50px;
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem; color: var(--gold);
}
.nav-logo-text {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.2rem; color: var(--white); letter-spacing: 3px;
}
.nav-logo-sub {
    font-size: 0.65rem; color: var(--gold);
    letter-spacing: 3.1px; display: block; margin-top: 2px;
}
.nav-links {
    display: flex; align-items: center; gap: 40px; list-style: none;
}
.nav-links a {
    color: var(--text); font-size: 0.85rem; letter-spacing: 2px;
    position: relative; padding: 5px 0; transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-book {
    background: transparent; border: 1px solid var(--gold) !important;
    color: var(--gold) !important; padding: 10px 25px !important;
    font-size: 0.8rem !important; letter-spacing: 3px !important;
    cursor: pointer; transition: all 0.3s ease !important;
}
.nav-book:hover {
    background: var(--gold) !important; color: var(--dark) !important;
}
.nav-book::after { display: none !important; }
.hamburger {
    display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001;
}
.hamburger span {
    width: 30px; height: 2px; background: var(--gold); transition: all 0.3s ease;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed; inset: 0;
    background: rgba(13,13,13,0.98); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 30px; opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
    color: var(--text); font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem; letter-spacing: 5px; transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }

/* ========== HERO ========== */
.hero {
    position: relative; height: 100vh; min-height: 700px; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; z-index: 2;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 15px; margin-bottom: 30px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease 0.5s forwards;
}
.hero-badge-line { width: 60px; height: 1px; background: var(--gold); }
.hero-badge-text { font-size: 0.85rem; letter-spacing: 6px; color: var(--gold); }
.hero-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700;
    letter-spacing: 15px; margin-bottom: 20px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease 0.8s forwards;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem); color: var(--text-muted);
    letter-spacing: 8px; margin-bottom: 15px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease 1s forwards;
}
.hero-desc {
    font-size: 0.9rem; color: var(--text-muted); letter-spacing: 3px;
    max-width: 600px; margin-bottom: 50px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease 1.2s forwards;
}
.hero-buttons {
    display: flex; gap: 20px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease 1.4s forwards;
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fadeUp 1s ease 1.8s forwards;
}
.hero-scroll-text { font-size: 0.7rem; letter-spacing: 3px; color: var(--text-muted); }
.hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block; padding: 15px 40px;
    font-size: 0.85rem; letter-spacing: 3px;
    border: 1px solid var(--gold); color: var(--gold);
    background: transparent; cursor: pointer;
    transition: all 0.4s ease; font-family: 'Noto Sans SC', sans-serif;
}
.btn:hover { background: var(--gold); color: var(--dark); }
.btn-filled { background: var(--gold); color: var(--dark); }
.btn-filled:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ========== SECTION COMMON ========== */
.section { padding: 120px 60px; position: relative; }
.section-dark { background: var(--dark-bg); }
.section-light { background: var(--section-bg); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-badge { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.section-badge-line { width: 40px; height: 1px; background: var(--gold); }
.section-badge-text { font-size: 0.75rem; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; }
.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600; letter-spacing: 8px; margin-bottom: 20px;
}
.section-subtitle { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 2px; }

/* ========== SUB PAGE BANNER ========== */
.sub-banner {
    height: 45vh; min-height: 350px;
    position: relative; overflow: hidden; margin-top: 80px;
}
.sub-banner img {
    width: 100%; height: 100%; object-fit: cover;
}
.sub-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(13,13,13,0.9) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.sub-banner-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 10px; margin-bottom: 15px;
}
.breadcrumb {
    font-size: 0.85rem; color: var(--text-muted); letter-spacing: 2px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 10px; color: var(--gold); }

/* ========== STATS ========== */
.stats {
    background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, rgba(13,13,13,0.95) 100%);
    border-top: 1px solid rgba(201,169,110,0.15);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    padding: 60px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 20px 0; }
.stat-number {
    font-family: 'Noto Serif SC', serif;
    font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-suffix { font-size: 1.2rem; color: var(--gold); }
.stat-label { font-size: 0.8rem; letter-spacing: 3px; color: var(--text-muted); }

/* ========== ABOUT ========== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image { position: relative; }
.about-image-main {
    width: 100%; height: 500px; object-fit: cover;
    border: 1px solid rgba(201,169,110,0.2);
}
.about-image-accent {
    position: absolute; bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    border: 1px solid var(--gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(13,13,13,0.9);
}
.about-image-accent-number {
    font-family: 'Noto Serif SC', serif;
    font-size: 3rem; color: var(--gold); line-height: 1;
}
.about-image-accent-text {
    font-size: 0.75rem; letter-spacing: 3px; color: var(--text-muted); margin-top: 5px;
}
.about-content { padding: 20px 0; }
.about-label { font-size: 0.75rem; letter-spacing: 5px; color: var(--gold); margin-bottom: 20px; }
.about-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem; letter-spacing: 5px; margin-bottom: 30px; line-height: 1.4;
}
.about-text { color: var(--text-muted); font-size: 0.9rem; line-height: 2; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 40px; }
.about-feature { display: flex; align-items: center; gap: 15px; }
.about-feature-icon {
    width: 50px; height: 50px;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.about-feature-text { font-size: 0.85rem; letter-spacing: 1px; }

/* ========== ROOMS GRID ========== */
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.room-card {
    position: relative; overflow: hidden; cursor: pointer;
}
.room-card.featured { grid-column: span 2; grid-row: span 2; }
.room-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}
.room-card:hover img { transform: scale(1.1); }
.room-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px; transition: background 0.4s ease;
}
.room-card:hover .room-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%);
}
.room-card-tag { font-size: 0.65rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.room-card-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 8px;
}
.room-card.featured .room-card-title { font-size: 1.8rem; }
.room-card-desc {
    font-size: 0.8rem; color: var(--text-muted);
    opacity: 0; transform: translateY(10px); transition: all 0.4s ease;
}
.room-card:hover .room-card-desc { opacity: 1; transform: translateY(0); }
.room-card-link {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 15px;
    font-size: 0.75rem; letter-spacing: 2px; color: var(--gold);
    opacity: 0; transform: translateY(10px); transition: all 0.4s ease 0.1s;
}
.room-card:hover .room-card-link { opacity: 1; transform: translateY(0); }
.room-card-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ========== ROOM DETAIL ========== */
.room-detail { padding: 80px 60px; }
.room-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.room-detail-image { width: 100%; height: 500px; object-fit: cover; border: 1px solid rgba(201,169,110,0.15); }
.room-detail-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem; letter-spacing: 5px; margin-bottom: 20px;
}
.room-detail-info {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 30px; padding: 25px;
    border: 1px solid rgba(201,169,110,0.15);
}
.room-detail-info-item { text-align: center; }
.room-detail-info-label { font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 5px; }
.room-detail-info-value { font-size: 0.9rem; }
.room-detail-section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1rem; letter-spacing: 3px; margin-bottom: 15px; color: var(--gold);
}
.room-detail-amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
.room-detail-amenity {
    display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted);
}
.room-detail-amenity::before { content: '\2713'; color: var(--gold); font-size: 0.7rem; }
.room-detail-book-btn {
    display: block; width: 100%; padding: 18px;
    background: var(--gold); color: var(--dark); border: none;
    font-size: 0.9rem; letter-spacing: 5px; cursor: pointer;
    transition: all 0.3s ease; font-family: 'Noto Sans SC', sans-serif;
}
.room-detail-book-btn:hover { background: var(--gold-light); }

/* ========== DINING ========== */
.dining-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.dining-image { position: sticky; top: 120px; }
.dining-image-main { width: 100%; height: 550px; object-fit: cover; }
.dining-image-badge {
    position: absolute; bottom: 30px; left: 30px;
    background: rgba(13,13,13,0.9); border: 1px solid var(--gold);
    padding: 20px 30px; text-align: center;
}
.dining-image-badge-title { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; letter-spacing: 3px; color: var(--gold); }
.dining-image-badge-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; }
.dining-items { display: grid; gap: 30px; }
.dining-item {
    display: flex; gap: 25px; padding: 25px;
    border: 1px solid rgba(201,169,110,0.1); transition: all 0.4s ease; cursor: pointer;
}
.dining-item:hover { border-color: rgba(201,169,110,0.4); background: rgba(201,169,110,0.05); }
.dining-item-image { width: 120px; height: 120px; object-fit: cover; flex-shrink: 0; }
.dining-item-content { flex: 1; }
.dining-item-title { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 8px; }
.dining-item-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.8; }

/* ========== FACILITIES ========== */
.facilities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.facility-card { position: relative; overflow: hidden; height: 350px; cursor: pointer; }
.facility-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.facility-card:hover img { transform: scale(1.1); }
.facility-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 25px 20px;
}
.facility-card-icon { width: 40px; height: 40px; margin-bottom: 12px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.facility-card-title { font-family: 'Noto Serif SC', serif; font-size: 1rem; letter-spacing: 3px; margin-bottom: 5px; }
.facility-card-desc {
    font-size: 0.75rem; color: var(--text-muted);
    opacity: 0; transform: translateY(10px); transition: all 0.4s ease;
}
.facility-card:hover .facility-card-desc { opacity: 1; transform: translateY(0); }

/* ========== BOOKING ========== */
.booking-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--card-bg); border: 1px solid rgba(201,169,110,0.15);
}
.booking-image { height: 100%; min-height: 500px; }
.booking-image img { width: 100%; height: 100%; object-fit: cover; }
.booking-form { padding: 60px; }
.booking-form-title { font-family: 'Noto Serif SC', serif; font-size: 1.8rem; letter-spacing: 5px; margin-bottom: 10px; }
.booking-form-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.form-group { margin-bottom: 25px; }
.form-label { display: block; font-size: 0.75rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,169,110,0.2);
    color: var(--text); font-size: 0.9rem;
    font-family: 'Noto Sans SC', sans-serif; transition: border-color 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-select {
    appearance: none; cursor: pointer;
    background: var(--card-bg); color: var(--text);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ========== CAPTCHA ========== */
.captcha-row { display: flex; gap: 12px; align-items: flex-end; }
.captcha-canvas {
    height: 44px; border-radius: 6px; cursor: pointer;
    border: 1px solid rgba(201,169,110,0.3);
    flex-shrink: 0;
}
.captcha-input { flex: 1; }
.captcha-tip { font-size: 0.7rem; color: var(--text-muted); margin-top: 5px; }

/* ========== WECHAT HOVER ========== */
.footer-wechat-wrap {
    position: relative; display: inline-block;
}
.footer-wechat-qr {
    position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    width: 160px; padding: 8px; background: var(--white);
    border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    pointer-events: none; margin-bottom: 10px;
}
.footer-wechat-qr img { width: 100%; height: auto; border-radius: 4px; }
.footer-wechat-qr::after {
    content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: var(--white);
}
.footer-wechat-wrap:hover .footer-wechat-qr {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(-5px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-submit {
    width: 100%; padding: 18px;
    background: var(--gold); color: var(--dark); border: none;
    font-size: 0.9rem; letter-spacing: 5px; cursor: pointer;
    transition: all 0.3s ease; font-family: 'Noto Sans SC', sans-serif; margin-top: 10px;
}
.booking-submit:hover { background: var(--gold-light); }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 80px; }
.contact-card {
    padding: 50px 40px; border: 1px solid rgba(201,169,110,0.15);
    text-align: center; transition: all 0.4s ease;
}
.contact-card:hover { border-color: rgba(201,169,110,0.4); background: rgba(201,169,110,0.05); }
.contact-card-icon {
    width: 60px; height: 60px; margin: 0 auto 25px;
    border: 1px solid rgba(201,169,110,0.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-card-title { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 15px; }
.contact-card-value { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.contact-card-value a { color: var(--gold); }
.contact-card-value a:hover { text-decoration: underline; }
.contact-map {
    width: 100%; height: 400px; border: 1px solid rgba(201,169,110,0.15);
    background: var(--card-bg); display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.contact-map-content { text-align: center; z-index: 2; }
.contact-map-pin { width: 60px; height: 60px; margin: 0 auto 20px; animation: mapBounce 2s ease-in-out infinite; }
@keyframes mapBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.contact-map-address { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 10px; }
.contact-map-detail { font-size: 0.85rem; color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer { background: var(--dark); border-top: 1px solid rgba(201,169,110,0.15); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 80px 60px; }
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.footer-logo-icon {
    width: 50px; height: 50px;
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif SC', serif; font-size: 1.1rem; color: var(--gold);
}
.footer-logo-text { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; color: var(--white); letter-spacing: 3px; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.footer-social a:hover svg { stroke: var(--dark); }
.footer-col-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1rem; letter-spacing: 3px; margin-bottom: 25px; color: var(--white);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(201,169,110,0.1);
    padding: 25px 60px; display: flex; align-items: center; justify-content: space-between;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-icp { font-size: 0.75rem; color: var(--text-muted); }
.footer-icp a { color: var(--text-muted); }
.footer-icp a:hover { color: var(--gold); }

/* ========== SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--gold); color: var(--dark); border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 100; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-light); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--dark); fill: none; stroke-width: 2; }

/* ========== ROOM LIST PAGE ========== */
.room-list-section { padding: 80px 60px; }
.room-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-list-card {
    border: 1px solid rgba(201,169,110,0.1); overflow: hidden;
    transition: all 0.4s ease; cursor: pointer;
}
.room-list-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-5px); }
.room-list-card-image { height: 220px; overflow: hidden; }
.room-list-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-list-card:hover .room-list-card-image img { transform: scale(1.1); }
.room-list-card-body { padding: 25px; }
.room-list-card-tag { font-size: 0.65rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.room-list-card-title { font-family: 'Noto Serif SC', serif; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 10px; }
.room-list-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 15px; }
.room-list-card-meta { display: flex; gap: 20px; font-size: 0.75rem; color: var(--text-muted); }
.room-list-card-meta span { display: flex; align-items: center; gap: 5px; }

/* ========== ABOUT PAGE ========== */
.about-page-content { padding: 80px 60px; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-page-text { }
.about-page-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem; letter-spacing: 5px; margin-bottom: 25px;
}
.about-page-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 2; margin-bottom: 15px; }
.about-page-image { width: 100%; height: 450px; object-fit: cover; border: 1px solid rgba(201,169,110,0.2); }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.about-value-card {
    padding: 40px 30px; text-align: center;
    border: 1px solid rgba(201,169,110,0.15); transition: all 0.4s ease;
}
.about-value-card:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.about-value-icon { margin-bottom: 20px; }
.about-value-icon svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto; display: block; }
.about-value-title { font-family: 'Noto Serif SC', serif; font-size: 1rem; letter-spacing: 3px; margin-bottom: 10px; }
.about-value-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .section { padding: 100px 40px; }
    .nav { padding: 20px 30px; }
    .nav.scrolled { padding: 15px 30px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .room-card.featured { grid-column: span 2; grid-row: span 1; }
    .facilities-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main { padding: 60px 40px; }
    .footer-bottom { padding: 20px 40px; }
    .room-list-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .room-detail-grid { grid-template-columns: 1fr; }
    .room-detail { padding: 80px 40px; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .dining-content { grid-template-columns: 1fr; gap: 50px; }
    .dining-image { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-image { min-height: 300px; }
    .booking-form { padding: 40px 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .room-card.featured { grid-column: span 2; }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .room-list-grid { grid-template-columns: 1fr 1fr; }
    .about-page-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .room-detail-grid { grid-template-columns: 1fr; }
    .room-detail { padding: 60px 20px; }
    .room-detail-info { grid-template-columns: 1fr; }
    .room-detail-amenities { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .section { padding: 80px 20px; }
    .nav { padding: 15px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .btn { width: 100%; text-align: center; }
    .stats { padding: 40px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .room-card.featured { grid-column: span 1; }
    .room-card { height: 250px; }
    .room-card.featured { height: 350px; }
    .facilities-grid { grid-template-columns: 1fr 1fr; }
    .facility-card { height: 220px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; padding: 40px 20px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
    .about-features { grid-template-columns: 1fr; }
    .about-image-accent { display: none; }
    .room-list-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .sub-banner { min-height: 250px; }
    .room-detail-info { grid-template-columns: 1fr; }
    .room-detail-amenities { grid-template-columns: 1fr; }
    .room-detail-image { height: 300px; }
    .room-list-section { padding: 60px 20px; }
    .about-page-content { padding: 60px 20px; }
}
