:root {
  --bg: #f7f4ee;
  --ink: #1a1714;
  --mute: #6a645c;
  --line: #e4ddd2;
  --white: #fffdf8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", "Songti SC", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
}
nav, .button, .links, footer, .three {
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}
img { max-width:100%;height:auto; display: block; }
a { color: inherit; text-decoration: none; }
ol { list-style: none; }
.wrap { width: min(920px, calc(100% - 48px)); margin-inline: auto; }
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,244,238,0.94);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}
.brand { font-weight: 750; letter-spacing: 0.08em; }
.links { display: flex; gap: 18px; font-size: 0.88rem; color: var(--mute); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
}
.ghost { padding: 10px 12px; color: var(--mute); }
.hero { padding: 80px 0 48px; }
.brand-mark {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--mute);
  margin-bottom: 28px;
}
.gold {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 18px;
}
.hero h1, .page-head h1 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--mute);
}
.lead { color: var(--mute); margin: 10px 0 28px; }
.three {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 1.05rem;
}
.section { padding: 80px 0; }
.head { margin-bottom: 28px; max-width: 34em; }
.grid6, .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.card, .download-card, .review, .scene, .policy {
  background: transparent;
  border-top: 1px solid var(--ink);
  padding: 14px 0 0;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split img, .shot img, .hero img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 18px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.person { margin-top: 12px; color: var(--mute); display: flex; flex-direction: column; }
.visual { padding: 0 0 80px; }
.metrics { display: flex; gap: 28px; margin: 16px 0; }
.metrics b { display: block; font-size: 1.2rem; }
.metrics small { color: var(--mute); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
}
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 650; }
details p { margin-top: 8px; color: var(--mute); }
.cta { padding: 8px 0 72px; }
.cta-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
footer {
  background: var(--ink);
  color: #d8d2c8;
  padding: 36px 0 18px;
}
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}
.footer .brand { color: #fff; }
.footer h4 { color: #9a9388; margin-bottom: 8px; }
.footer a { display: block; margin: 6px 0; }
.copy { border-top: 1px solid #3a342c; padding-top: 12px; font-size: 0.8rem; }
.page-head { padding: 56px 0 8px; }
.help-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
}
.side a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--mute); }
.article { margin-bottom: 36px; }
.article .shot { margin: 14px 0; }
.policy { margin-top: 14px; }
@media (max-width: 900px) {
  .grid6, .cards, .review-grid, .split, .faq-layout, .footer, .help-layout, .cta-in {
    grid-template-columns: 1fr;
  }
  .links { display: none; }
}
@media (max-width: 640px) {
  .scene-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}
