:root {
  --ivory: #f3efe6;
  --paper: #faf8f2;
  --linen: #e7dfd2;
  --walnut: #251d18;
  --espresso: #15110f;
  --ink: #302822;
  --muted: #756b61;
  --brass: #a9854f;
  --brass-soft: #cdb98f;
  --wine: #6d2734;
  --sage: #6c7668;
  --line: rgba(63, 48, 36, .16);
  --max: 1200px;
  --serif: Georgia, "Noto Serif SC", "Songti SC", SimSun, serif;
  --sans: "Microsoft YaHei UI", "PingFang SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input { font: inherit; }
:focus-visible { outline: 2px solid var(--wine); outline-offset: 4px; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: var(--ivory); background: var(--espresso); }
.section-walnut { color: var(--ivory); background: var(--walnut); }
.kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.045em;
}
.heading em { color: var(--brass); font-weight: 400; }
.lead { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.section-dark .lead, .section-walnut .lead { color: #b9afa5; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 52px; }
.section-head .lead { max-width: 420px; margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  color: #f7f1e7;
  background: rgba(21, 17, 15, .94);
  border-bottom: 1px solid rgba(205, 185, 143, .24);
  backdrop-filter: blur(15px);
}
.nav { height: 100%; display: flex; align-items: center; gap: 35px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 20px; letter-spacing: .02em; }
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--brass-soft);
  font-family: var(--serif);
  font-size: 15px;
}
.brand small { display: block; color: #9d9287; font-family: var(--sans); font-size: 8px; letter-spacing: .24em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a { position: relative; color: #c8beb4; font-size: 13px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--brass); transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-cta, .btn {
  min-height: 46px;
  min-width: 132px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--brass);
  border-radius: 0;
  color: white;
  background: var(--wine);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.btn:hover, .nav-cta:hover { color: var(--espresso); background: var(--brass-soft); transform: translateY(-2px); }
.btn-quiet { color: var(--ink); background: transparent; border-color: rgba(48, 40, 34, .35); }
.btn-quiet:hover { color: white; background: var(--walnut); }
.section-dark .btn-quiet, .section-walnut .btn-quiet { color: white; border-color: rgba(255,255,255,.32); }
.btn-small { min-height: 39px; min-width: 108px; padding-inline: 15px; }
.menu-toggle { display: none; margin-left: auto; padding: 8px; border: 0; color: white; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px 0; background: currentColor; }

.hero {
  min-height: 790px;
  padding: 146px 0 86px;
  color: white;
  background: var(--espresso);
  position: relative;
}
.hero::before {
  content: "WPS";
  position: absolute;
  right: -30px;
  top: 96px;
  color: rgba(255,255,255,.025);
  font-family: var(--serif);
  font-size: 330px;
  line-height: 1;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-room { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; color: var(--brass-soft); font-size: 10px; letter-spacing: .2em; }
.room-key { padding: 8px 11px; border: 1px solid var(--brass); font-family: var(--serif); font-size: 16px; letter-spacing: 0; }
h1 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 7vw, 90px); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
h1 span { display: block; margin-top: 10px; color: var(--brass-soft); font-style: italic; }
.hero p { max-width: 570px; margin: 28px 0 0; color: #bcb2a9; font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.service-notes { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; color: #8e8379; font-size: 11px; }
.service-notes span::before { content: "◆"; margin-right: 8px; color: var(--brass); font-size: 7px; }
.hero-media { align-self: center; position: relative; height: auto; padding: 0; margin: 0; }
.hero-frame { padding: 12px; border: 1px solid rgba(205,185,143,.28); background: #0d0b09; box-shadow: 0 38px 90px rgba(0,0,0,.42); }
.hero-frame img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; }
.concierge-tag {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 170px;
  padding: 18px;
  color: var(--ink);
  background: var(--brass-soft);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.concierge-tag small { display: block; font-size: 9px; letter-spacing: .18em; }
.concierge-tag strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 18px; font-weight: 400; }

.service-bar { border-bottom: 1px solid var(--line); background: var(--paper); }
.service-grid { min-height: 110px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); }
.service-item { padding: 25px 30px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.service-item:first-child { border-left: 0; padding-left: 0; }
.service-item small { color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.service-item strong { margin-top: 5px; font-family: var(--serif); font-size: 19px; font-weight: 400; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 300px; padding: 30px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(250,248,242,.55); }
.feature-card::after { content: ""; position: absolute; inset: 0; background: var(--walnut); transform: scaleY(0); transform-origin: bottom; transition: transform .34s ease; }
.feature-card > * { position: relative; z-index: 1; }
.feature-card:hover::after { transform: scaleY(1); }
.feature-card:hover { color: white; }
.feature-card:hover p { color: #bfb4a9; }
.feature-mark { display: flex; align-items: center; justify-content: space-between; color: var(--brass); font-family: var(--serif); }
.feature-mark b { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid currentColor; font-weight: 400; }
.feature-mark span { color: #a79c90; font-size: 11px; letter-spacing: .13em; }
.feature-card h3 { margin: 70px 0 10px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; transition: color .25s ease; }

.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.editorial-media { align-self: center; padding: 0; margin: 0; position: relative; }
.editorial-media::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--brass); opacity: .42; }
.editorial-media img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; position: relative; background: white; }
.detail-list { padding: 0; margin: 30px 0 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { padding: 15px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.detail-list li span { color: var(--brass); font-family: var(--serif); }

.download-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(205,185,143,.25); border: 1px solid rgba(205,185,143,.25); }
.download-card { min-width: 0; padding: 30px 24px; background: var(--espresso); }
.platform { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--brass); color: var(--brass-soft); font-family: var(--serif); font-size: 13px; }
.download-card h3 { margin: 28px 0 4px; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.download-card p { min-height: 49px; margin: 0 0 22px; color: #978c82; font-size: 12px; }
.download-card .btn { width: 100%; min-width: 0; }

.scene-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 18px; }
.scene { min-height: 420px; padding: 28px; position: relative; display: flex; align-items: end; overflow: hidden; color: white; background: var(--walnut); }
.scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.scene::after { content: ""; position: absolute; inset: 28% 0 0; background: linear-gradient(transparent, rgba(21,17,15,.94)); }
.scene-content { position: relative; z-index: 1; }
.scene .room-key { display: inline-flex; margin-bottom: 16px; color: var(--brass-soft); }
.scene h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.scene p { margin: 0; color: #b8ada3; font-size: 13px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { padding: 32px; border: 1px solid var(--line); background: var(--paper); }
.quote-mark { color: var(--brass); font-family: var(--serif); font-size: 46px; line-height: 1; }
.testimonial blockquote { min-height: 125px; margin: 18px 0 25px; font-family: var(--serif); font-size: 18px; line-height: 1.7; }
.guest { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--wine); font-family: var(--serif); }
.guest strong, .guest small { display: block; }
.guest strong { font-size: 13px; }
.guest small { color: var(--muted); font-size: 10px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 18px; }
.price-card { padding: 34px; color: var(--ink); background: var(--paper); border-top: 3px solid var(--linen); }
.price-card.featured { min-height: 510px; padding-top: 48px; color: white; background: var(--wine); border-color: var(--brass-soft); }
.plan-label { color: var(--brass); font-size: 10px; letter-spacing: .17em; }
.featured .plan-label { color: var(--brass-soft); }
.price-card h3 { margin: 20px 0 0; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.price { margin: 10px 0 25px; font-family: var(--serif); font-size: 43px; }
.price small { color: var(--muted); font-family: var(--sans); font-size: 11px; }
.featured .price small { color: #d4bdc2; }
.price-card ul { min-height: 155px; padding: 0; margin: 0 0 28px; list-style: none; font-size: 13px; }
.price-card li { margin: 9px 0; }
.price-card li::before { content: "—"; margin-right: 8px; color: var(--brass); }
.price-card .btn { width: 100%; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; color: var(--ink); background: transparent; text-align: left; cursor: pointer; }
.faq-question b { color: var(--brass); font-family: var(--serif); font-size: 23px; font-weight: 400; transition: transform .22s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 48px 23px 0; color: var(--muted); font-size: 13px; }
.faq-item.open .faq-answer { max-height: 180px; }
.faq-item.open .faq-question b { transform: rotate(45deg); }

.final-cta { padding: 70px; display: flex; align-items: center; justify-content: space-between; gap: 40px; color: white; background: var(--wine); border: 1px solid var(--brass); }
.final-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.5vw, 58px); font-weight: 400; line-height: 1.1; }

.page-hero { padding: 160px 0 86px; color: white; background: var(--walnut); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 80px; }
.page-hero h1 { font-size: clamp(52px, 7vw, 82px); }
.page-hero p { max-width: 600px; color: #c0b5aa; font-size: 16px; }
.page-media { align-self: center; padding: 12px; border: 1px solid rgba(205,185,143,.35); }
.page-media img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; background: white; }

.download-rows { border-top: 1px solid var(--line); }
.download-row { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 26px; padding: 26px 18px; border-bottom: 1px solid var(--line); }
.download-row h2 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.download-row p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.download-row .platform { color: var(--brass); }
.requirements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.requirement { padding: 28px; border-left: 2px solid var(--brass); background: var(--paper); }
.requirement h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.requirement p { margin: 0; color: var(--muted); font-size: 12px; }

.help-hero { padding-bottom: 100px; }
.search-box { max-width: 740px; margin-top: 30px; padding: 7px; display: flex; background: var(--paper); }
.search-box input { flex: 1; min-width: 0; padding: 0 16px; border: 0; outline: 0; color: var(--ink); background: transparent; }
.help-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }
.help-nav { position: sticky; top: 104px; padding: 22px; border: 1px solid var(--line); background: var(--paper); }
.help-nav strong { display: block; margin-bottom: 12px; color: var(--brass); font-family: var(--serif); font-weight: 400; }
.help-nav a { display: block; padding: 9px 0; color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--line); }
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.help-card { min-height: 205px; padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.help-card .platform { color: var(--brass); }
.help-card h2 { margin: 27px 0 6px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.help-card p { margin: 0; color: var(--muted); font-size: 12px; }
.article-list { margin-top: 65px; border-top: 1px solid var(--line); }
.article { display: grid; grid-template-columns: 38px 1fr auto; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.article > span { color: var(--brass); font-family: var(--serif); }
.article h3 { margin: 0; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.article p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 76px 0 26px; color: #c7bdb2; background: var(--espresso); border-top: 1px solid rgba(205,185,143,.22); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 44px; }
.footer-brand p { max-width: 280px; color: #81776f; font-size: 12px; }
.footer-col h3 { margin: 0 0 17px; color: var(--brass-soft); font-family: var(--serif); font-size: 16px; font-weight: 400; }
.footer-col a { display: block; margin: 8px 0; color: #887e75; font-size: 11px; }
.footer-col a:hover { color: var(--brass-soft); }
.footer-bottom { margin-top: 54px; padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); color: #665e58; font-size: 10px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav > .nav-cta { display: none; }
  .nav-links { position: fixed; inset: 78px 20px auto; display: none; padding: 12px; color: white; background: var(--espresso); border: 1px solid rgba(205,185,143,.28); }
  .nav-links.open { display: block; }
  .nav-links a { display: block; padding: 12px; }
  .hero-grid, .page-hero-grid, .editorial, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { width: min(780px, 100%); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-item:first-child { grid-column: 1 / -1; padding: 22px 0; }
  .scene-grid { grid-template-columns: 1fr 1fr; }
  .scene:first-child { grid-column: 1 / -1; }
  .help-layout { grid-template-columns: 1fr; }
  .help-nav { position: static; display: flex; flex-wrap: wrap; gap: 0 20px; }
  .help-nav strong { width: 100%; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 78px 0; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 18px; }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 46px; }
  .hero::before, .concierge-tag { display: none; }
  .feature-grid, .download-grid, .scene-grid, .testimonial-grid, .pricing-grid, .help-grid, .requirements { grid-template-columns: 1fr; }
  .scene:first-child { grid-column: auto; }
  .service-grid { grid-template-columns: 1fr; padding: 15px 0; }
  .service-item, .service-item:first-child { grid-column: auto; padding: 15px 0; border-left: 0; border-top: 1px solid var(--line); }
  .service-item:first-child { border-top: 0; }
  .price-card.featured { min-height: auto; }
  .final-cta { padding: 40px 25px; display: block; }
  .final-cta .btn { margin-top: 25px; }
  .download-row { grid-template-columns: 54px 1fr; padding-inline: 0; }
  .download-row .btn { grid-column: 1 / -1; width: 100%; }
  .article { grid-template-columns: 30px 1fr; }
  .article > span:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Hero image safeguards */
.hero-grid { align-items: center; }
.hero-media, .editorial-media, .page-media { align-self: center; height: auto; padding-top: 0; padding-bottom: 0; margin-top: 0; margin-bottom: 0; transform: none; clip-path: none; }
.hero-frame { margin: 0; transform: none; clip-path: none; }
.hero-frame img, .editorial-media img, .page-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
  clip-path: none;
}
