:root {
  --ink: #17232b;
  --paper: #f7f8f5;
  --paper-deep: #e7f6f1;
  --green: #116a76;
  --green-light: #168696;
  --brick: #ff5f4a;
  --brick-dark: #df4135;
  --sea: #136f91;
  --gold: #ffd454;
  --mint: #b8f1d5;
  --peach: #ffe5da;
  --white: #ffffff;
  --line: rgba(23, 35, 43, .16);
  --shadow: 0 18px 48px rgba(14, 55, 67, .13);
  --content: min(1180px, calc(100% - 40px));
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --sans: Inter, "Avenir Next", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Yu Gothic", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.7; letter-spacing: 0; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-160%); padding: 8px 12px; background: var(--white); color: var(--ink); }
.skip-link:focus { transform: none; }
.demo-notice { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 7px 20px; background: var(--ink); color: var(--white); font-size: 12px; text-align: center; }
.demo-notice span { padding: 1px 7px; border: 1px solid rgba(255,255,255,.68); font-weight: 700; }
.demo-notice p { margin: 0; }
.site-header { position: sticky; top: 0; z-index: 50; height: 74px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(20px, calc((100vw - 1180px) / 2)); background: rgba(255, 255, 255, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: var(--gold); font-family: var(--serif); font-size: 24px; transform: rotate(-3deg); }
.brand strong, .brand small { display: block; line-height: 1.25; }
.brand strong { font-size: 19px; font-weight: 800; }
.brand small { color: #63727a; font-size: 10px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { position: relative; color: #34444c; text-decoration: none; font-size: 13px; font-weight: 650; white-space: nowrap; }
.site-nav a:not(.nav-contact)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--brick); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav .nav-contact { padding: 9px 15px; color: var(--white); background: var(--brick); }
.language-switcher { width: 112px; height: 36px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 3px; border: 1px solid var(--line); background: #eef2f1; }
.language-switcher button { min-width: 0; border: 0; background: transparent; color: #52636b; font-size: 11px; font-weight: 750; cursor: pointer; }
.language-switcher button[aria-pressed="true"] { color: var(--white); background: var(--sea); }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.icon-button svg { width: 22px; height: 22px; }
.nav-toggle { display: none; }
.hero { position: relative; min-height: calc(100svh - 210px); max-height: 780px; overflow: hidden; color: var(--white); background: var(--sea); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.hero-shade { position: absolute; inset: 0; background: rgba(6, 29, 38, .42); }
.hero-content { position: relative; z-index: 1; width: var(--content); min-height: inherit; display: flex; flex-direction: column; justify-content: center; margin: 0 auto; padding: 58px 0 96px; }
.eyebrow { margin: 0 0 14px; color: var(--brick); font-weight: 700; font-size: 13px; }
.hero .eyebrow { display: inline-flex; align-self: flex-start; margin-bottom: 20px; padding: 6px 10px; color: var(--ink); background: var(--gold); }
.hero h1 { max-width: 900px; margin: 0; font-size: 112px; font-weight: 850; line-height: .95; letter-spacing: 0; text-shadow: 0 4px 28px rgba(0,0,0,.24); overflow-wrap: anywhere; }
html[lang="en"] .hero h1 { font-size: 96px; }
.hero-subtitle { max-width: 720px; margin: 26px 0 0; font-size: 34px; font-weight: 700; line-height: 1.35; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 4px; text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { color: var(--white); background: var(--brick); }
.button-primary:hover { background: var(--brick-dark); }
.button-ghost { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-ghost:hover { background: var(--mint); border-color: var(--mint); }
.button-outline { color: var(--green); background: transparent; border-color: var(--green); }
.button-outline:hover { color: var(--white); background: var(--green); }
.hero-location { position: absolute; right: max(20px, calc((100vw - 1180px) / 2)); bottom: 28px; z-index: 1; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-left: 4px solid var(--mint); background: var(--ink); font-size: 12px; }
.hero-location svg { width: 17px; height: 17px; }
.section-band { padding: 108px 0; }
.section-inner { width: var(--content); margin: 0 auto; }
.section-heading { max-width: 720px; }
.section-heading h2, .story-copy h2, .contact-copy h2 { margin: 0; font-size: 56px; font-weight: 800; line-height: 1.15; overflow-wrap: anywhere; }
.section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-note { max-width: 220px; margin: 0 0 6px; color: #66706c; font-size: 13px; }
.intro { padding-top: 70px; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-copy > p { margin: 0; font-size: 21px; font-weight: 550; line-height: 1.8; }
.feature-list { display: grid; gap: 20px; margin: 38px 0 0; padding: 30px 0 0; border-top: 3px solid var(--mint); list-style: none; }
.feature-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.feature-list svg { width: 22px; color: var(--sea); }
.feature-list strong { display: block; }
.rooms { background: var(--paper-deep); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.room-card { overflow: hidden; background: var(--white); border: 1px solid rgba(17, 106, 118, .15); border-radius: 4px; box-shadow: 8px 8px 0 rgba(17, 106, 118, .08); }
.room-card figure { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; }
.room-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.room-card:hover figure img { transform: scale(1.025); }
.room-card figcaption, .story figure figcaption { position: absolute; right: 10px; bottom: 10px; padding: 4px 7px; color: var(--white); background: rgba(15, 28, 25, .72); font-size: 11px; }
.room-card-body { padding: 24px; }
.room-type { margin: 0; color: var(--sea); font-size: 12px; font-weight: 700; }
.room-card h3 { margin: 8px 0 10px; font-size: 26px; line-height: 1.3; }
.room-card-body > p:not(.room-type) { min-height: 62px; margin: 0; color: #53605b; font-size: 14px; }
.room-meta { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.room-meta strong { font-size: 21px; }
.room-meta small { color: #6b746f; font-size: 11px; font-weight: 400; }
.text-action { display: inline-flex; align-items: center; gap: 4px; padding: 5px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--brick); font-size: 13px; cursor: pointer; }
.text-action svg { width: 15px; }
.gallery { background: var(--sea); color: var(--white); }
.gallery .eyebrow { color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: 1.4fr .8fr; grid-template-rows: repeat(2, minmax(230px, 30vw)); gap: 12px; margin-top: 46px; }
.gallery-grid figure { position: relative; min-height: 0; margin: 0; overflow: hidden; border: 4px solid rgba(255,255,255,.14); }
.gallery-grid .gallery-wide { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption { position: absolute; right: 0; bottom: 0; padding: 7px 10px; background: rgba(16, 39, 34, .82); font-size: 12px; }
.neighborhood { background: var(--white); }
.neighborhood-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--sea); text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link svg { width: 18px; }
.route-list { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.route-list::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: 70px; width: 3px; background: var(--mint); }
.route-list li { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 0 0 36px; }
.route-list li::before { content: ""; position: absolute; top: 8px; left: 65px; width: 13px; height: 13px; border: 3px solid var(--white); border-radius: 50%; background: var(--brick); }
.route-list time { color: var(--brick); font-weight: 700; font-size: 13px; }
.route-list h3 { margin: 0 0 6px; font-size: 23px; }
.route-list p { margin: 0; color: #5e6964; }
.story { background: var(--peach); }
.story-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.story figure { position: relative; margin: 0; min-height: 600px; overflow: hidden; }
.story figure img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: 55% center; }
.story-copy blockquote { margin: 32px 0; padding-left: 24px; border-left: 6px solid var(--brick); font-size: 22px; font-weight: 650; line-height: 1.8; }
.story-copy > p:last-child { color: #52605a; }
.reviews { background: #f2f5f6; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.review-card { margin: 0; padding: 32px; border-top: 7px solid var(--sea); background: var(--white); border-radius: 4px; box-shadow: 0 10px 28px rgba(18, 31, 28, .06); }
.review-card:nth-child(2) { border-color: var(--brick); }
.review-card:nth-child(3) { border-color: var(--gold); }
.review-card > p { margin: 0; font-size: 18px; font-weight: 550; line-height: 1.8; }
.review-card footer { display: grid; gap: 2px; margin-top: 28px; font-size: 12px; }
.review-card footer span { color: #6c756f; }
.contact { padding-bottom: 132px; background: var(--gold); }
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; font-size: 18px; }
.contact-copy small { display: block; margin-top: 16px; }
.qr-panel { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: center; padding: 20px; background: var(--white); box-shadow: var(--shadow); }
.qr-panel img { width: 120px; height: 120px; }
.qr-panel strong, .qr-panel span { display: block; }
.qr-panel span { margin-top: 5px; color: #67716d; font-size: 12px; }
.site-footer { display: grid; grid-template-columns: .7fr 1.5fr auto; gap: 40px; align-items: end; padding: 50px max(20px, calc((100vw - 1180px) / 2)); color: #e8eef0; background: var(--ink); font-size: 12px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 28px; }
.site-footer p { margin: 0; }
.site-footer a { color: #f2c77c; }
.mobile-contact { display: none; }
.wechat-dialog { width: min(420px, calc(100% - 32px)); padding: 34px; border: 0; border-radius: 4px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.wechat-dialog::backdrop { background: rgba(9, 20, 17, .72); backdrop-filter: blur(3px); }
.wechat-dialog h2 { margin: 0; font-size: 38px; }
.wechat-dialog > img { width: 220px; height: 220px; margin: 20px auto; border: 1px solid var(--line); }
.wechat-dialog > p { margin: 10px 0; }
.wechat-dialog .dialog-close { position: absolute; top: 8px; right: 8px; }
.wechat-dialog .button { width: 100%; margin-top: 8px; }
.wechat-dialog small { display: block; margin-top: 12px; color: #6a736e; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 90; max-width: 320px; padding: 12px 16px; color: var(--white); background: var(--green); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.intro .section-heading.reveal { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --content: min(100% - 32px, 720px); }
  .demo-notice { align-items: flex-start; }
  .site-header { padding: 0 16px; }
  .nav-toggle { display: inline-grid; }
  .site-nav { position: absolute; top: 74px; right: 0; left: 0; display: none; align-items: stretch; gap: 4px; padding: 16px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 12px; }
  .site-nav .nav-contact { text-align: center; }
  .language-switcher { width: 100%; height: 42px; margin-top: 8px; }
  .section-heading h2, .story-copy h2, .contact-copy h2 { font-size: 48px; }
  .hero h1, html[lang="en"] .hero h1 { font-size: 82px; }
  .hero { min-height: calc(100svh - 220px); }
  .hero-content { padding-bottom: 120px; }
  .hero-location { right: 16px; bottom: 18px; left: 16px; justify-content: center; }
  .section-band { padding: 82px 0; }
  .intro { padding-top: 52px; }
  .intro-grid, .neighborhood-layout, .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .room-grid { grid-template-columns: 1fr; gap: 24px; }
  .room-card { display: grid; grid-template-columns: .95fr 1.05fr; }
  .room-card figure { height: 100%; aspect-ratio: auto; }
  .room-card-body > p:not(.room-type) { min-height: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .story figure, .story figure img { min-height: 480px; }
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .qr-panel { max-width: 440px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 600px) {
  :root { --content: calc(100% - 28px); }
  .demo-notice { min-height: 52px; gap: 8px; padding: 7px 12px; font-size: 11px; }
  .demo-notice span { flex: 0 0 auto; }
  .site-header { height: 66px; }
  .site-nav { top: 66px; }
  .hero { min-height: calc(100svh - 260px); }
  .hero > img { object-position: 58% center; }
  .hero-shade { background: rgba(7, 29, 38, .52); }
  .hero-content { justify-content: flex-end; padding: 72px 0 118px; }
  .hero h1, html[lang="en"] .hero h1 { font-size: 58px; }
  html[lang="en"] .hero h1 { max-width: 330px; font-size: 52px; }
  .hero-subtitle { margin-top: 16px; font-size: 23px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { flex: 1 1 150px; }
  .hero-location { font-size: 11px; }
  .section-band { padding: 68px 0; }
  .intro { padding-top: 24px; }
  .intro .section-heading h2 { margin-top: 24px; }
  .section-heading h2, .story-copy h2, .contact-copy h2 { font-size: 37px; }
  .section-heading-row { display: block; }
  .section-note { margin-top: 14px; }
  .intro-copy > p { font-size: 19px; }
  .room-card { display: block; }
  .room-card figure { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 340px 220px; }
  .gallery-grid .gallery-wide { grid-column: 1 / 3; grid-row: auto; }
  .route-list::before { left: 58px; }
  .route-list li { grid-template-columns: 58px 1fr; gap: 20px; }
  .route-list li::before { left: 53px; }
  .story figure, .story figure img { min-height: 360px; }
  .story-copy blockquote { font-size: 20px; }
  .contact { padding-bottom: 110px; }
  .contact-actions { display: grid; }
  .contact-actions .button { width: 100%; }
  .qr-panel { grid-template-columns: 96px 1fr; padding: 14px; }
  .qr-panel img { width: 96px; height: 96px; }
  .mobile-contact { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 45; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 4px; background: var(--sea); box-shadow: 0 8px 24px rgba(10,25,21,.24); }
  .mobile-contact a, .mobile-contact button { min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; color: var(--white); background: transparent; text-decoration: none; cursor: pointer; }
  .mobile-contact button { background: var(--brick); }
  .mobile-contact svg { width: 19px; }
  .site-footer { padding-bottom: 88px; }
  .toast { right: 10px; bottom: 76px; left: 10px; max-width: none; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
