:root {
  --ink: #111111;
  --muted: #64625f;
  --line: #e7e2db;
  --paper: #f7f4ef;
  --white: #ffffff;
  --gold: #9b7a49;
  --sage: #697666;
  --stone: #dad3c8;
  --shadow: 0 24px 80px rgba(20, 18, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(17, 17, 17, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px) saturate(140%);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(248, 246, 242, 0.82);
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 16px 36px rgba(20, 18, 14, 0.08);
}

.subpage .site-header {
  color: var(--ink);
  background: rgba(248, 246, 242, 0.9);
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 16px 36px rgba(20, 18, 14, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  filter: saturate(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin-left: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.site-header.scrolled .nav-cta {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  opacity: 0.92;
  transform: scale(1.02);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(8, 10, 10, 0.32) 0%, rgba(8, 10, 10, 0.1) 36%, rgba(8, 10, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 10, 10, 0.7) 0%, rgba(8, 10, 10, 0.22) 48%, rgba(8, 10, 10, 0.05) 100%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 72px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow.dark,
.section-kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.04;
  font-weight: 650;
  letter-spacing: 0;
}

h1 span {
  display: block;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  font-weight: 640;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 640;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.94);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.dark-button {
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.18);
  background: transparent;
}

.section-pad {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 158px 0 76px;
}

.page-hero h1 {
  color: var(--ink);
  max-width: 1050px;
}

.page-hero p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.text-block {
  color: var(--muted);
  font-size: 18px;
}

.text-block p {
  margin-bottom: 18px;
}

.founder-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(20, 18, 14, 0.055);
}

.founder-profile-card {
  display: block;
}

.founder-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.founder-portrait {
  flex: 0 0 auto;
  width: 108px;
  aspect-ratio: 1;
  background: #1b1b1b;
  border: 1px solid rgba(155, 122, 73, 0.24);
  border-radius: 50%;
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-copy {
  padding: 0;
}

.founder-name span {
  margin-bottom: 8px;
}

.founder-name h3 {
  margin-bottom: 0;
}

.founder-panel span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.founder-panel p {
  color: var(--muted);
  font-size: 18px;
}

.founder-panel p:last-child {
  margin-bottom: 0;
}

.founder-honors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.founder-honors li {
  list-style: none;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(155, 122, 73, 0.08);
  border: 1px solid rgba(155, 122, 73, 0.18);
  font-size: 14px;
  line-height: 1.45;
}

.interview-list {
  display: grid;
  gap: 14px;
}

.interview-card {
  display: block;
  padding: 26px 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(20, 18, 14, 0.055);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.interview-intro {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.interview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 122, 73, 0.42);
  background: var(--white);
}

.interview-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.interview-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.76);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.page-card:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.page-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
}

.page-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-authority-heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 860px;
  align-items: start;
}

.home-authority-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.home-authority-copy {
  max-width: 720px;
  margin: 8px 0 0 min(8vw, 96px);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.article-list-section {
  width: min(980px, calc(100% - 48px));
}

.article-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 156px;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.article-card:hover {
  transform: translateX(2px);
  background: var(--white);
  border-color: rgba(155, 122, 73, 0.34);
}

.article-card-media {
  width: 124px;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin-left: 22px;
  overflow: hidden;
  background: var(--stone);
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-media.is-contain {
  padding: 10px;
  background: #f6f2ea;
}

.article-card-media.is-contain img {
  object-fit: contain;
}

.article-card-copy {
  display: grid;
  align-content: start;
  padding: 22px 26px 22px 0;
}

.article-card-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.article-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-card-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
}

.article-detail {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 86px;
}

.article-detail h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 5.8vw, 74px);
}

.article-summary {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.78;
}

.article-hero-image {
  margin: 38px 0 42px;
  overflow: hidden;
  background: var(--stone);
}

.article-hero-image img {
  max-height: 560px;
  object-fit: cover;
}

.article-hero-image.is-contain {
  padding: 22px;
  background: #f6f2ea;
}

.article-hero-image.is-contain img {
  max-height: 680px;
  object-fit: contain;
}

.article-body {
  max-width: 720px;
  color: #292724;
  font-size: 19px;
  line-height: 1.95;
}

.article-body p {
  margin-bottom: 24px;
}

.article-inline-image {
  margin: 34px 0;
  overflow: hidden;
  background: #f6f2ea;
}

.article-inline-image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.article-inline-image figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact-grid article {
  min-height: 156px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.fact-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.fact-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-weight: 650;
}

.booking-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 0.9fr auto;
  align-items: stretch;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-strip div,
.booking-action {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
}

.booking-strip span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.booking-strip strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.booking-action {
  min-width: 142px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  font-weight: 650;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 72px;
  align-items: start;
}

.intro-copy {
  padding-top: 8px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p {
  margin-bottom: 18px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-strip span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: #2b2927;
  font-size: 15px;
}

.member-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 104px;
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.member-band h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 62px);
}

.member-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.member-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.member-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.member-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: 720px;
  background: var(--white);
}

.feature-media {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.feature-media img {
  height: 100%;
  object-fit: cover;
}

.strategy-feature .feature-media img {
  object-position: 42% center;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px clamp(32px, 6vw, 96px);
}

.feature-text p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 18px;
}

.feature-text > p:not(.eyebrow):not(.section-kicker) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
  margin: 14px 0 18px;
}

.mini-points span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(155, 122, 73, 0.08);
  border: 1px solid rgba(155, 122, 73, 0.18);
  font-size: 14px;
  font-weight: 650;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading.compact {
  align-items: start;
}

.section-heading > p,
.section-heading.compact > p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.home-authority-heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 860px;
  align-items: start;
}

.section-heading.home-authority-heading .home-authority-copy {
  max-width: 720px;
  margin: 8px 0 0 min(8vw, 96px);
  line-height: 1.72;
}

.room-switch {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 0;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.room-switch button {
  min-width: 112px;
  height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.room-switch button:last-child {
  border-right: 0;
}

.room-switch button.active {
  background: var(--ink);
  color: var(--white);
}

.room-panel {
  display: none;
}

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

.room-lead {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.room-lead p {
  max-width: 460px;
  color: var(--muted);
}

.room-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.room-type-block {
  margin-bottom: 64px;
}

.room-type-block:last-child {
  margin-bottom: 0;
}

.room-type-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.room-type-head h3 {
  margin-bottom: 8px;
}

.room-type-head p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.room-type-link {
  align-self: end;
}

.room-number-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.room-number-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
}

.room-card {
  display: block;
  min-height: 0;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(20, 18, 14, 0.055);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

a.room-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 122, 73, 0.42);
  box-shadow: 0 22px 56px rgba(20, 18, 14, 0.085);
}

.room-image {
  aspect-ratio: 1.32 / 1;
  background: #eee8df;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.room-meta {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 20px 20px;
}

.room-meta > span:not(.room-shared-note) {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.room-meta h4 {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.room-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.room-card-action {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  margin-top: auto;
  width: fit-content;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.room-shared-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 8px;
  color: var(--muted);
  background: rgba(155, 122, 73, 0.09);
  border: 1px solid rgba(155, 122, 73, 0.2);
  font-size: 12px;
  font-weight: 650;
}

.room-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.room-gallery-list {
  display: grid;
  gap: 58px;
}

.room-gallery-block {
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.room-gallery-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.room-gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.room-gallery-head h3 {
  margin-bottom: 6px;
}

.room-gallery-head p {
  margin: 0;
  color: var(--muted);
}

.room-gallery-count {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.room-gallery figure img {
  aspect-ratio: 4 / 3;
}

.photo-editor-panel {
  display: none;
}

.photo-edit-mode .photo-editor-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(155, 122, 73, 0.32);
  box-shadow: 0 16px 42px rgba(20, 18, 14, 0.07);
}

.photo-edit-mode .photo-editor-panel.saved {
  border-color: rgba(105, 118, 102, 0.62);
  background: rgba(246, 249, 244, 0.94);
}

.photo-editor-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.photo-editor-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.photo-editor-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-editor-actions button,
.photo-edit-tools button {
  appearance: none;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.photo-editor-actions button {
  min-height: 36px;
  padding: 0 14px;
}

.photo-edit-tools {
  display: none;
}

.photo-edit-mode .photo-edit-item {
  position: relative;
  cursor: grab;
  outline: 1px solid rgba(155, 122, 73, 0.16);
}

.photo-edit-mode .photo-edit-item.dragging {
  opacity: 0.48;
  cursor: grabbing;
}

.photo-edit-mode .photo-edit-item.is-cover {
  outline: 2px solid rgba(155, 122, 73, 0.72);
}

.photo-edit-mode .photo-edit-item.is-cover::before {
  content: "首图";
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 750;
}

.photo-edit-mode .photo-edit-tools {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 8px;
}

.photo-edit-tools button {
  min-height: 30px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(20, 18, 14, 0.12);
}

.photo-grid {
  display: grid;
  gap: 18px;
}

.photo-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(20, 18, 14, 0.06);
}

figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.solution {
  border-top: 1px solid var(--line);
}

.process,
.standard-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process article,
.standard-list article,
.standard-list a {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.process span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.process p,
.standard-list p {
  color: var(--muted);
}

.standard-list a {
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.standard-list a:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.standard-list a .inline-link {
  margin-top: auto;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.destination-grid article,
.destination-grid .destination-card {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.76);
}

.destination-grid .destination-card {
  display: block;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.destination-grid .destination-card:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.route-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0 0 24px;
  overflow: hidden;
  background: rgba(155, 122, 73, 0.08);
}

.route-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.destination-card:hover .route-card-media img {
  transform: scale(1.03);
}

.route-card-media strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 11px;
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  background: rgba(20, 18, 14, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.destination-grid span {
  display: inline-flex;
  margin: 0 24px 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.destination-grid h3 {
  margin-right: 24px;
  margin-left: 24px;
}

.destination-grid p {
  margin-right: 24px;
  margin-bottom: 0;
  margin-left: 24px;
  padding-bottom: 28px;
  color: var(--muted);
}

.itinerary-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: -30px -30px 28px;
  overflow: hidden;
  background: rgba(155, 122, 73, 0.08);
}

.itinerary-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itinerary-card-media strong {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  background: rgba(20, 18, 14, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.itinerary-card {
  min-height: 520px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.itinerary-card > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.itinerary-card h3 {
  margin-bottom: 26px;
}

.itinerary-day {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.itinerary-day strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.itinerary-day p,
.itinerary-tip {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.itinerary-tip {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(155, 122, 73, 0.08);
  border: 1px solid rgba(155, 122, 73, 0.16);
}

.map-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.map-route-card {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(20, 18, 14, 0.045);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.map-route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 122, 73, 0.42);
  box-shadow: 0 22px 54px rgba(20, 18, 14, 0.08);
}

.map-route-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.map-route-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.map-route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.route-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.route-time-grid {
  margin-top: 18px;
}

.route-time-grid article {
  min-height: 118px;
  padding: 18px;
}

.route-visual-section {
  padding-top: 0;
}

.route-detail-visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.route-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.route-detail-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  max-width: 440px;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(20, 18, 14, 0.1);
  backdrop-filter: blur(18px);
}

.route-detail-visual span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.route-detail-visual strong {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.route-detail-visual small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.checkin-image-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.checkin-proof {
  margin: 0;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(20, 18, 14, 0.055);
}

.checkin-proof img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f7f4ef;
}

.checkin-proof figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

.checkin-guide-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.checkin-guide-pair.reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.76fr);
}

.checkin-guide-copy {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.checkin-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  flex: 1;
}

.checkin-steps article {
  min-height: 164px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.checkin-steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.checkin-steps h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.checkin-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.compact-visual {
  justify-self: stretch;
  max-width: 420px;
  height: 100%;
}

.compact-visual img {
  max-height: 560px;
  height: calc(100% - 49px);
}

.qr-note {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.qr-note img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.qr-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.huiwan {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  min-height: 780px;
  background: #10100f;
  color: var(--white);
}

.huiwan-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(32px, 6vw, 96px);
}

.huiwan-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 42px 0 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.metrics div {
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.metrics dt {
  font-size: 34px;
  font-weight: 650;
  line-height: 1;
}

.metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  min-height: 100%;
}

.case-gallery figure {
  position: relative;
  min-height: 320px;
  box-shadow: none;
}

.case-gallery img {
  height: 100%;
  object-fit: cover;
}

.case-gallery figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(16, 16, 15, 0.62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.case-gallery .wide {
  grid-column: 1 / -1;
}

.case-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-list article span,
.case-room-grid span,
.case-timeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.case-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-room-grid article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.case-room-grid p,
.case-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-timeline article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.case-timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
}

.case-results {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.case-results-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.case-metrics div {
  min-height: 154px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.case-metrics dt {
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 650;
  line-height: 1;
}

.case-metrics dd {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.calculation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.calculation-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(20, 18, 14, 0.055);
}

.calculation-grid h3 {
  margin-bottom: 12px;
}

.calculation-grid p {
  color: var(--muted);
}

.calculation-grid figure {
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.calculation-grid img {
  width: 100%;
  display: block;
}

.calculation-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}

.case-detail-gallery {
  margin-top: 104px;
}

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

.standard-list article {
  min-height: 230px;
}

.trust {
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.trust-grid article {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.trust-grid strong {
  display: block;
  margin-bottom: 58px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.honor-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(20, 18, 14, 0.07);
}

.honor-card img {
  width: 100%;
  height: 300px;
  padding: 14px;
  object-fit: contain;
  background: #f4f0e9;
}

.honor-card figcaption {
  min-height: 168px;
}

.honor-card figcaption strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.review-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.review-proof {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(20, 18, 14, 0.07);
}

.review-proof img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  padding: 0;
  object-fit: contain;
}

.review-proof figcaption {
  padding: 18px 18px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.review-proof figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.review-wall {
  column-count: 3;
  column-gap: 18px;
}

.review-wall .review-proof {
  break-inside: avoid;
  margin: 0 0 18px;
}

.guide {
  padding-top: 0;
}

.contact-priority {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 0;
}

.contact-primary-card {
  min-height: 240px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(20, 18, 14, 0.055);
}

.contact-primary-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.contact-primary-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 68px);
}

.contact-primary-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.guide-list article,
.guide-list .guide-card,
.guide-list .guide-qr-card {
  display: block;
  min-height: 210px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(20, 18, 14, 0.045);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.guide-list .guide-card:hover,
.guide-list .guide-qr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 122, 73, 0.42);
  box-shadow: 0 26px 62px rgba(20, 18, 14, 0.085);
}

.guide-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.guide-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-account-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 900px;
  gap: 22px;
}

.utility-entry-grid {
  position: relative;
  margin-top: 76px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.utility-entry-grid::before {
  position: absolute;
  top: -38px;
  left: 0;
  width: min(100%, 900px);
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 18, 14, 0.12), rgba(20, 18, 14, 0));
  content: "";
}

.guide-qr-card {
  display: grid !important;
  gap: 12px;
  justify-items: start;
  align-content: start;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-qr-card img {
  width: min(100%, 220px);
  height: 220px;
  object-fit: contain;
  background: var(--white);
}

.guide-qr-card-wide img {
  width: min(100%, 220px);
  height: 220px;
  object-fit: contain;
}

.guide-qr-card span {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .social-account-grid,
  .utility-entry-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.contact-wechat {
  align-items: start;
}

.wechat-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wechat-qr-grid article {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(20, 18, 14, 0.045);
}

.wechat-qr-grid img {
  width: min(100%, 210px);
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}

.wechat-qr-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.wechat-qr-grid strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.contact {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 24px;
  padding: 78px clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 36px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 64px);
}

.contact p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-panel > div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-panel strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.contact-panel .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact .button.primary {
  background: var(--white);
}

.contact .dark-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 12px auto;
  }

  .nav-links {
    position: absolute;
    inset: 64px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(248, 246, 242, 0.94);
    border: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  .menu-button {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .image-feature,
  .checkin-guide-pair,
  .checkin-guide-pair.reverse,
  .member-band,
  .two-column,
  .huiwan,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-grid.three,
  .room-gallery,
  .checkin-image-grid,
  .checkin-steps,
  .calculation-grid,
  .room-catalog,
  .process,
  .case-process,
  .standard-list,
  .case-list,
  .case-room-grid,
  .case-timeline,
  .case-results,
  .case-metrics,
  .article-grid,
  .destination-grid,
  .itinerary-grid,
  .map-route-grid,
  .trust-grid,
  .honor-grid,
  .review-preview-grid,
  .page-grid,
  .fact-grid,
  .guide-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .review-wall {
    column-count: 2;
  }

  .contact {
    align-items: start;
  }

  .photo-edit-mode .photo-editor-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content,
  .page-hero,
  .section-pad,
  .contact,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 10, 10, 0.28) 0%, rgba(8, 10, 10, 0.12) 34%, rgba(8, 10, 10, 0.84) 100%),
      linear-gradient(90deg, rgba(8, 10, 10, 0.58) 0%, rgba(8, 10, 10, 0.18) 100%);
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.08;
  }

  h2 {
    margin-bottom: 14px;
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.12;
  }

  h3 {
    font-size: 18px;
  }

  .section-pad {
    padding: 50px 0;
  }

  .page-hero {
    padding: 104px 0 30px;
  }

  .article-detail {
    width: min(100% - 28px, 880px);
    padding: 104px 0 58px;
  }

  .article-detail h1 {
    font-size: clamp(30px, 8.4vw, 42px);
  }

  .article-summary,
  .article-body {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-card-copy {
    padding: 18px 18px 18px 0;
  }

  .article-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 112px;
  }

  .article-card-media {
    width: 84px;
    min-height: 0;
    margin-left: 14px;
  }

  .article-card-copy h3 {
    font-size: 18px;
    line-height: 1.22;
  }

  .article-card-copy p {
    -webkit-line-clamp: 2;
  }

  .page-hero p:not(.section-kicker),
  .section-heading > p,
  .section-heading.compact > p,
  .text-block,
  .feature-text > p:not(.eyebrow):not(.section-kicker),
  .huiwan-copy p:not(.section-kicker),
  .case-results-copy p:not(.section-kicker),
  .contact p:not(.section-kicker) {
    font-size: 15px;
  }

  .booking-strip {
    width: min(100% - 28px, 1120px);
    margin-top: -28px;
    grid-template-columns: 1fr;
  }

  .booking-strip div,
  .booking-action {
    min-height: 72px;
    padding: 16px 18px;
  }

  .booking-strip strong {
    font-size: 16px;
  }

  .intro-grid,
  .section-heading,
  .room-lead {
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .home-authority-heading {
    gap: 16px;
  }

  .home-authority-copy {
    max-width: none;
    margin-left: 0;
    font-size: 15px;
    line-height: 1.58;
  }

  .room-lead {
    display: block;
  }

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

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

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

  .room-image {
    height: auto;
    aspect-ratio: 1.32 / 1;
  }

  .room-gallery-head {
    display: block;
  }

  .room-gallery-count {
    display: inline-block;
    margin-top: 10px;
  }

  .value-strip,
  .photo-grid.three,
  .room-gallery,
  .checkin-image-grid,
  .checkin-steps,
  .room-catalog,
  .process,
  .case-process,
  .standard-list,
  .case-list,
  .case-room-grid,
  .case-timeline,
  .case-results,
  .case-metrics,
  .destination-grid,
  .map-route-grid,
  .trust-grid,
  .honor-grid,
  .review-preview-grid,
  .page-grid,
  .fact-grid,
  .guide-list,
  .metrics {
    grid-template-columns: 1fr;
  }

  .review-wall {
    column-count: 1;
  }

  .itinerary-card-media {
    margin: -30px -30px 24px;
  }

  .route-detail-visual,
  .route-detail-visual img {
    min-height: 420px;
  }

  .route-detail-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 16px;
  }

  .route-detail-visual strong {
    font-size: 28px;
  }

  .route-card-media strong {
    font-size: 14px;
  }

  .compact-visual {
    max-width: none;
  }

  .compact-visual img {
    max-height: none;
    height: auto;
  }

  .qr-note {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .qr-note img {
    width: 92px;
  }

  .contact-priority {
    padding-top: 0;
  }

  .contact-primary-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .contact-primary-card span {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .contact-primary-card h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 8.4vw, 36px);
  }

  .contact-primary-card p {
    font-size: 14px;
  }

  .guide-list {
    gap: 12px;
  }

  .guide-list article,
  .guide-list .guide-card,
  .guide-list .guide-qr-card {
    min-height: auto;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(20, 18, 14, 0.04);
  }

  .guide-list span {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .guide-list p {
    font-size: 14px;
    line-height: 1.45;
  }

  .social-account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .social-account-grid .guide-qr-card {
    padding: 14px;
  }

  .guide-qr-card img,
  .guide-qr-card-wide img {
    width: min(100%, 132px);
    height: 132px;
    justify-self: center;
  }

  .guide-qr-card span {
    margin-bottom: 0;
  }

  .guide-qr-card h3 {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.25;
  }

  .guide-qr-card p {
    font-size: 12px;
  }

  .utility-entry-grid {
    margin-top: 52px;
  }

  .utility-entry-grid::before {
    top: -30px;
  }

  .wechat-qr-grid {
    gap: 12px;
  }

  .wechat-qr-grid article {
    padding: 18px 14px;
  }

  .wechat-qr-grid img {
    width: min(100%, 132px);
  }

  .wechat-qr-grid strong {
    font-size: 17px;
  }

  .founder-honors {
    grid-template-columns: 1fr;
  }

  .member-band {
    width: min(100% - 28px, 1180px);
    margin-bottom: 72px;
    padding: 44px 20px;
  }

  .feature-media {
    min-height: 430px;
  }

  .feature-text,
  .huiwan-copy {
    padding: 58px 18px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery .wide {
    min-height: 270px;
  }

  .contact {
    padding: 54px 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
