
  /* ============================================
     全局重置与基础样式
  ============================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2A2A2A;
    line-height: 1.7;
    background: #FDFBF7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* CSS 变量：金色主题 */
  :root {
    --gold: #C8A456;
    --gold-dark: #A8862E;
    --gold-light: #E8D49A;
    --dark: #1A1A1A;
    --text: #2A2A2A;
    --text-light: #6B6B6B;
    --bg: #FDFBF7;
    --bg-warm: #F5EFE3;
    --white: #FFFFFF;
    --border: #E5DDC9;
    --shadow-sm: 0 2px 8px rgba(168, 134, 46, 0.08);
    --shadow-md: 0 8px 24px rgba(168, 134, 46, 0.12);
    --shadow-lg: 0 16px 48px rgba(168, 134, 46, 0.18);
  }

  /* ============================================
     通用容器
  ============================================ */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .section { padding: 100px 0; position: relative; }
  .section-sm { padding: 60px 0; }

  /* 标题样式 */
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-title .en {
    font-family: "Times New Roman", serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }
  .section-title h2 {
    font-size: 36px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
  }
  .section-title h2::before,
  .section-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .section-title h2::before { right: calc(100% + 20px); }
  .section-title h2::after { left: calc(100% + 20px); }
  .section-title .desc {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 15px;
    letter-spacing: 1px;
  }

  /* 按钮 */
  .btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: #fff;
    border-radius: 2px;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all .3s ease;
    border: 1px solid var(--gold);
  }
  .btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn-outline {
    background: transparent;
    color: var(--gold);
  }
  .btn-outline:hover {
    background: var(--gold);
    color: #fff;
  }

  /* ============================================
     顶部导航
  ============================================ */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 58, 52, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(240, 210, 145, .08), 0 4px 20px rgba(0,0,0,.15);
    transition: all .3s ease;
  }
  .header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    box-shadow: var(--shadow-sm);
  }
  .header.scrolled .nav a,
  .header.scrolled .logo .zh { color: var(--dark); }
  .header.scrolled .logo .en { color: var(--gold); }
  .header.scrolled .nav-cta { color: #fff; }

  .nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .logo .zh {
    font-size: 20px;
    color: #F4D995;
    font-weight: 600;
    letter-spacing: 4px;
    transition: color .3s;
  }
  .logo .en {
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color .3s;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(248, 233, 198, .92);
    font-size: 14px;
    letter-spacing: 2px;
    transition: color .3s;
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 8px 18px;
    border: 1px solid var(--gold);
    color: #F4D995;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all .3s;
  }
  .nav-cta:hover {
    background: var(--gold);
    color: #fff !important;
  }

  /* 移动端菜单按钮 */
  .menu-btn {
    display: none;
    width: 28px; height: 22px;
    position: relative;
  }
  .menu-btn span {
    position: absolute;
    left: 0; right: 0;
    height: 1.5px;
    background: #fff;
    transition: all .3s;
  }
  .menu-btn span:nth-child(1) { top: 4px; }
  .menu-btn span:nth-child(2) { top: 10px; }
  .menu-btn span:nth-child(3) { top: 16px; }

  /* ============================================
     Hero 主视觉
  ============================================ */
  .hero {
    position: relative;
    height: 72vh;
    min-height: 470px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    isolation: isolate;
    background: #0A3A30;
  }
  /* 大厅休息区背景：干净舒适、无标识，cover 保持比例只裁切不拉伸 */
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-lobby.jpg') center center/cover no-repeat;
    z-index: -2;
  }
  /* 文字直接叠在干净的大厅背景上：靠文字阴影保证可读，不再加蒙版底 */
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 44px 60px 50px;
    animation: fadeUp 1.2s ease-out;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 7px 24px;
    border: 1px solid rgba(240, 210, 145, .5);
    border-radius: 999px;
    color: #F4D995;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    background: rgba(240, 210, 145, .07);
  }
  .hero-tag::before,
  .hero-tag::after {
    content: "";
    width: 22px;
    height: 1px;
    flex-shrink: 0;
  }
  .hero-tag::before { background: linear-gradient(90deg, transparent, rgba(240, 210, 145, .8)); }
  .hero-tag::after { background: linear-gradient(90deg, rgba(240, 210, 145, .8), transparent); }
  .hero h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 14px;
    background: linear-gradient(180deg, #FBE9BE 0%, #F2D68F 45%, #D9B45E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 14px rgba(0,0,0,.45));
  }
  .hero .en-title {
    font-family: "Times New Roman", serif;
    font-size: 17px;
    letter-spacing: 7px;
    color: #FBE9BE;
    margin-bottom: 26px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
  }
  .hero-sub {
    font-size: 16px;
    letter-spacing: 3px;
    color: rgba(250, 242, 222, .96);
    margin-bottom: 44px;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
  }
  .hero-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-btns .btn {
    padding: 15px 40px;
    border-radius: 999px;
    font-size: 15px;
    letter-spacing: 2px;
    border: 1px solid transparent;
    transition: all .3s ease;
  }
  .hero-btns .btn-primary {
    background: linear-gradient(180deg, #F0D48A 0%, #D9B45E 100%);
    border-color: #E6C67C;
    color: #2E2407;
    box-shadow: 0 8px 26px rgba(0,0,0,.28);
  }
  .hero-btns .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.34);
    filter: brightness(1.05);
  }
  .hero-btns .btn-ghost {
    background: rgba(240, 210, 145, .08);
    border-color: rgba(240, 210, 145, .55);
    color: #F4D995;
  }
  .hero-btns .btn-ghost:hover {
    background: rgba(240, 210, 145, .16);
    transform: translateY(-2px);
  }
  .scroll-tip {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(244, 217, 149, .92);
    font-size: 12px;
    letter-spacing: 3px;
    animation: bounce 2s infinite;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
  }
  .scroll-tip::after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(244, 217, 149, .85), transparent);
    margin: 8px auto 0;
  }
  @keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
  }

  /* ============================================
     亮点数据条
  ============================================ */
  .stats {
    background: linear-gradient(135deg, var(--dark) 0%, #2A2A2A 100%);
    color: #fff;
    padding: 50px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .stat-item .num {
    font-size: 42px;
    color: var(--gold);
    font-weight: 600;
    font-family: "Times New Roman", serif;
    margin-bottom: 8px;
  }
  .stat-item .label {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    letter-spacing: 3px;
  }

  /* ============================================
     关于我们
  ============================================ */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
  }
  .about-image:hover img { transform: scale(1.05); }
  .about-image::after {
    content: "";
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
  }
  .about-content .label {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }
  .about-content h2 {
    font-size: 36px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 28px;
    line-height: 1.3;
  }
  .about-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.9;
  }
  .about-features {
    list-style: none;
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
  }
  .about-features li {
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 14px;
  }
  .about-features li::before {
    content: "✦";
    color: var(--gold);
    margin-right: 10px;
    font-size: 12px;
  }

  /* ============================================
     房型展示
  ============================================ */
  .rooms { background: var(--bg-warm); }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }
  .room-card {
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .4s ease;
    position: relative;
    border: 1px solid var(--border);
  }
  .room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  .room-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
  }
  .room-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
  }
  .room-card:hover .room-img img { transform: scale(1.1); }
  .room-img .badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .room-img .area {
    position: absolute;
    bottom: 16px; right: 16px;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .room-info {
    padding: 24px;
  }
  .room-info h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 2px;
  }
  .room-info .bed {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .room-info .bed::before {
    content: "🛏 ";
    color: var(--gold);
  }
  .room-info .desc {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
  }

  /* ============================================
     设施配套
  ============================================ */
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }
  .facility-item {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid var(--border);
    transition: all .3s ease;
  }
  .facility-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .facility-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
  }
  .facility-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .facility-item h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 2px;
  }
  .facility-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
  }

  /* ============================================
     资质奖项
  ============================================ */
  .awards { background: var(--bg-warm); }
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  .award-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
  }
  .award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .award-card img {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 16px;
    border: 1px solid var(--border);
  }
  .award-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 2px;
  }
  .award-card p {
    color: var(--text-light);
    font-size: 13px;
  }

  /* ============================================
     地理位置
  ============================================ */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .location-info h2 {
    font-size: 32px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 24px;
  }
  .location-info p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.9;
  }
  .location-detail {
    list-style: none;
    margin-bottom: 32px;
  }
  .location-detail li {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .location-detail li .icon {
    color: var(--gold);
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .location-detail li .text {
    flex: 1;
  }
  .location-detail li .label {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }
  .location-detail li .value {
    color: var(--dark);
    font-size: 15px;
  }

  /* ============================================
     FAQ
  ============================================ */
  .faq-list {
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: all .3s;
  }
  .faq-item.open {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
  }
  .faq-q {
    padding: 20px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
    letter-spacing: 1px;
  }
  .faq-q::before {
    content: "Q";
    display: inline-block;
    width: 28px; height: 28px;
    line-height: 28px;
    text-align: center;
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    margin-right: 16px;
    flex-shrink: 0;
    border-radius: 50%;
  }
  .faq-q .arrow {
    transition: transform .3s;
    color: var(--gold);
    font-size: 14px;
  }
  .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .faq-a-inner {
    padding: 0 28px 24px 72px;
    color: var(--text-light);
    line-height: 1.9;
  }

  /* ============================================
     联系我们 / CTA
  ============================================ */
  .cta {
    background: linear-gradient(135deg, rgba(26,26,26,.92) 0%, rgba(26,26,26,.85) 100%),
                url('../images/aerial.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
  }
  .cta h2 {
    font-size: 36px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .cta .phone-big {
    font-size: 48px;
    color: var(--gold);
    font-family: "Times New Roman", serif;
    font-weight: 600;
    margin: 24px 0 12px;
    letter-spacing: 2px;
  }
  .cta .phone-label {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 8px;
  }
  .cta .address {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 36px;
  }
  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ============================================
     页脚
  ============================================ */
  .footer {
    background: #0E0E0E;
    color: rgba(255,255,255,.7);
    padding: 60px 0 24px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-col h5 {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  .footer-col h5::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 1px;
    background: var(--gold);
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    padding: 6px 0;
    font-size: 13px;
  }
  .footer-col li a:hover { color: var(--gold); }
  .footer-about p {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 16px;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    letter-spacing: 1px;
  }
  .footer-bottom a { color: var(--gold); }

  /* 浮动电话按钮 */
  .float-phone {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(200, 164, 86, 0.4);
    z-index: 999;
    transition: all .3s;
    animation: pulse 2s infinite;
  }
  .float-phone:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(200, 164, 86, 0.4); }
    50% { box-shadow: 0 8px 24px rgba(200, 164, 86, 0.8), 0 0 0 8px rgba(200, 164, 86, 0.2); }
  }

  /* ============================================
     响应式
  ============================================ */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .nav-cta { display: none; }

    .hero h1 { font-size: 40px; letter-spacing: 6px; }
    .hero .en-title { font-size: 14px; letter-spacing: 4px; }
    .hero-sub { font-size: 14px; letter-spacing: 2px; }
    .hero-content { padding: 36px 34px 42px; }

    .about-grid,
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 480px; margin: 0 auto; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .stat-item .num { font-size: 32px; }

    .awards-grid { grid-template-columns: 1fr; gap: 24px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .section { padding: 60px 0; }
    .section-title h2 { font-size: 26px; letter-spacing: 2px; }
    .section-title h2::before, .section-title h2::after { width: 20px; }

    .cta h2 { font-size: 26px; letter-spacing: 3px; }
    .cta .phone-big { font-size: 32px; }
    .cta { background-attachment: scroll; }
  }
  @media (max-width: 560px) {
    .hero h1 { font-size: 32px; letter-spacing: 4px; }
    .hero-content { padding: 30px 22px 36px; margin: 0 12px; }
    .hero-btns .btn { padding: 13px 30px; font-size: 14px; }
    .scroll-tip { display: none; }
    .about-features { grid-template-columns: 1fr; }
    .about-content h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .float-phone { width: 50px; height: 50px; font-size: 22px; bottom: 20px; right: 20px; }
  }
