:root {
  --bg: #f7f4ee;
  --bg-soft: #efe7dc;
  --surface: rgba(255, 255, 255, 0.82);
  --ink: #363632;
  --muted: #6f6a63;
  --line: #d9d0c5;
  --accent: #728c80;
  --accent-deep: #50685e;
  --accent-warm: #d8b68a;
  --shadow: 0 18px 40px rgba(46, 41, 35, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f9f6f0 0%, #f7f4ee 30%, #f3eee6 100%);
  color: var(--ink);
  line-height: 1.7;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 238, 0.82);
  border-bottom: 1px solid rgba(217, 208, 197, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.86rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.22s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34,32,29,0.72) 0%, rgba(34,32,29,0.48) 35%, rgba(34,32,29,0.16) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: 5.6rem 0 4rem;
  color: #fff;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1rem;
  align-items: end;
}

.hero-main {
  max-width: 760px;
}

.hero-ghost {
  background: rgba(255,255,255,0.08);
}

.hero-panel {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.3rem;
}

.hero-panel-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.hero-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.28rem;
  line-height: 1.32;
}

.hero-panel p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.96rem;
}

.hero-panel-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1rem;
}

.hero-panel-list div {
  padding: 0.82rem 0.9rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-panel-list strong {
  display: block;
  margin-bottom: 0.16rem;
  color: #fff;
}

.hero-panel-list span {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.hero-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-panel-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.08rem;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-tags {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-tag {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: rgba(255,255,255,0.36);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

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

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1.1rem;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid rgba(217, 208, 197, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(114, 140, 128, 0.18), rgba(216, 182, 138, 0.28));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.room-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-note {
  min-height: 220px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(239, 231, 220, 0.72), rgba(255, 255, 255, 0.88));
}

.room-note strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(80, 104, 94, 0.12);
  color: var(--accent-deep);
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}

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

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.room-meta span {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.experience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
}

.experience-photo {
  min-height: 100%;
}

.experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-copy {
  padding: 1.5rem;
}

.checklist {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.checklist div {
  padding: 0.9rem 1rem;
  background: var(--bg-soft);
  border-radius: 18px;
  color: var(--ink);
}

.nearby-list {
  display: grid;
  gap: 0.9rem;
}

.nearby-item {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid rgba(217, 208, 197, 0.8);
  border-radius: 20px;
}

.spot-grid {
  margin-bottom: 1.4rem;
}

.spot-card p {
  margin: 0.4rem 0 0;
}

.spot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.spot-tags span {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.nearby-cta {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.3rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 208, 197, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.nearby-cta-copy {
  max-width: 640px;
}

.luxury-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.luxury-editorial-copy {
  padding: 1.5rem 1.55rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(217, 208, 197, 0.84);
  box-shadow: var(--shadow);
}

.luxury-editorial-copy .eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
}

.luxury-editorial-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.16;
}

.luxury-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.luxury-checklist {
  margin-top: 1rem;
}

.route-luxury-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.route-card {
  overflow: hidden;
  border-radius: 24px;
}

.route-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.route-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.route-copy {
  padding: 1.2rem 1.2rem 1.25rem;
}

.route-step {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.route-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.26rem;
  line-height: 1.3;
}

.route-copy p {
  margin: 0;
  color: var(--muted);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.route-tags span {
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.84rem;
}

.route-actions {
  margin-top: 1rem;
}

.route-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.room-subhead {
  margin-top: 2.2rem;
}

.room-compare-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(217, 208, 197, 0.82);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.82);
}

.room-compare-head,
.room-compare-row {
  display: grid;
  grid-template-columns: 220px repeat(3, minmax(0, 1fr));
}

.room-compare-head {
  background: linear-gradient(180deg, rgba(245,241,234,0.95) 0%, rgba(255,255,255,0.92) 100%);
}

.room-compare-head > div,
.room-compare-row > div {
  padding: 1rem 1.05rem;
  border-right: 1px solid rgba(217,208,197,0.72);
}

.room-compare-head > div:last-child,
.room-compare-row > div:last-child {
  border-right: 0;
}

.room-compare-row {
  border-top: 1px solid rgba(217,208,197,0.72);
}

.room-compare-label {
  font-weight: 700;
  color: var(--ink);
  background: rgba(247,244,238,0.72);
}

.room-compare-col h3 {
  margin: 0.18rem 0 0;
  font-size: 1.18rem;
}

.room-compare-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-compare-row div:not(.room-compare-label) {
  color: var(--muted);
}

.room-compare-actions .btn {
  width: 100%;
}

.guest-voice-grid {
  align-items: stretch;
}

.guest-voice-card {
  overflow: hidden;
}

.guest-voice-top {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.guest-voice-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.guest-voice-top strong {
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
}

.guest-voice-cta {
  margin-top: 1.1rem;
}

.trust-entry-grid,
.content-entry-grid {
  align-items: stretch;
}

.trust-entry-card,
.content-entry-card {
  overflow: hidden;
}

.trust-checklist {
  margin-top: 1rem;
}

.content-entry-head {
  margin-top: 2.2rem;
}

.onsite-grid {
  margin-top: 1.2rem;
}

.onsite-card {
  overflow: hidden;
}

.onsite-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.onsite-card .card-body {
  padding: 1.05rem 1.05rem 1.2rem;
}

.onsite-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.story-preview-head {
  margin-top: 2.3rem;
}

.story-preview-grid {
  margin-top: 1.2rem;
}

.story-preview-card {
  overflow: hidden;
}

.story-preview-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.story-preview-card .card-body {
  padding: 1.05rem 1.05rem 1.2rem;
}

.story-preview-cta {
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .luxury-editorial,
  .route-card-wide {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .route-luxury-grid {
    grid-template-columns: 1fr;
  }

  .room-compare-head,
  .room-compare-row {
    grid-template-columns: 1fr;
  }

  .room-compare-head > div,
  .room-compare-row > div {
    border-right: 0;
  }

  .room-compare-label {
    border-bottom: 1px solid rgba(217,208,197,0.72);
  }
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(217, 208, 197, 0.8);
}

.faq-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.cta {
  background: linear-gradient(135deg, #5a766a 0%, #6f8b80 50%, #8fa193 100%);
  color: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.cta p {
  color: rgba(255,255,255,0.88);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  color: var(--muted);
}

.site-footer .foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(217, 208, 197, 0.8);
  padding-top: 1.1rem;
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .experience {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero {
    min-height: 78vh;
  }
  .hero-content {
    padding-top: 4.5rem;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero p {
    font-size: 1rem;
  }
}
