:root {
  --ivory: #f7f4ee;
  --cement: #6e6a64;
  --cement-deep: #3a3834;
  --ink: #2b2926;
  --muted: #7a756e;
  --foot: #f7f8f8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  font-size: 14px;
  line-height: 1.8;
  min-width: 1180px;
}
img { max-width: 100%; border: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
.hand {
  font-family: "Segoe Script", "KaiTi", "STKaiti", "Microsoft YaHei", cursive;
  font-weight: 400;
  letter-spacing: .04em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--cement-deep);
  color: var(--ivory);
  cursor: pointer;
  letter-spacing: .08em;
}
.btn-ghost {
  background: transparent;
  color: var(--cement-deep);
  outline: 1px solid var(--cement);
}
.wrap { width: 1100px; margin: 0 auto; }
.wide { width: 1180px; margin: 0 auto; }
.fine { font-size: 12px; letter-spacing: .16em; color: var(--muted); }
h2.sec-title { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.sec-sub { color: var(--muted); margin-bottom: 22px; }

.side-l, .side-r {
  position: fixed;
  top: 120px;
  z-index: 30;
  width: 120px;
  padding: 14px 10px;
  background: rgba(247,244,238,.92);
  border-radius: 24px;
  outline: 1px solid rgba(58,56,52,.12);
}
.side-l { left: 12px; }
.side-r { right: 12px; }
.side-l a, .side-r a {
  display: block;
  font-size: 12px;
  padding: 6px 0;
  color: var(--muted);
}

.hero-wrap { position: relative; min-height: 760px; }
#index_top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  height: 64px;
}
#index_top .bar {
  width: 1100px;
  margin: 12px auto 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 8px;
  border-radius: 999px;
  background: rgba(247,244,238,.9);
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo img { height: 28px; }
.mid-nav { display: flex; align-items: center; gap: 2px; }
.mid-nav > a, .mid-nav > .drop > span {
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.drop { position: relative; }
.mega {
  display: none;
  position: absolute;
  top: 34px; left: 50%;
  transform: translateX(-50%);
  width: 560px;
  padding: 16px;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  background: var(--ivory);
  border-radius: 24px;
  z-index: 5;
}
.drop:hover .mega { display: grid; }
.mega b { display: block; margin-bottom: 6px; }
.mega a { display: block; padding: 4px 0; color: var(--muted); font-size: 13px; }
.top-acts { display: flex; align-items: center; gap: 8px; font-size: 13px; }

#index_head { position: relative; min-height: 760px; overflow: hidden; background: #3a3834; color: var(--ivory); }
.earth {
  position: absolute;
  width: 700px; height: 700px;
  right: -10%;
  top: 8%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 16deg, rgba(247,244,238,.14) 0 12deg, rgba(20,18,16,.4) 12deg 24deg);
  animation: spin 90s linear infinite;
  opacity: .5;
}
@keyframes spin { to { transform: rotate(360deg); } }
.float-banner {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(247,244,238,.12);
  font-size: 12px;
  letter-spacing: .16em;
  white-space: nowrap;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 1100px;
  margin: 0 auto;
  padding: 150px 0 50px;
}
#index_head .hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .12em;
}
.hero-sub { color: #d8d2c8; letter-spacing: .16em; margin: 10px 0 20px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.seo-h1 { margin-top: 16px; font-size: 16px; font-weight: 600; color: #efe8dc; }
.hero-shot { margin-top: 22px; width: 520px; height: 220px; object-fit: cover; border-radius: 24px; }

#sell { padding: 80px 0 24px; overflow: hidden; }
.sell-row { width: 1100px; margin: 0 auto; overflow: hidden; }
.sell-item { float: left; width: 18%; margin-right: 7%; text-align: center; }
.sell-item:last-child { margin-right: 0; }
.sell-item img { width: 200px; height: 176px; object-fit: cover; display: block; margin: 0 auto 12px; border-radius: 24px; }
.sell-item h3 { font-size: 16px; }
.sell-item p { font-size: 13px; color: var(--muted); }
.clear { clear: both; }

.compact { width: 1100px; margin: 8px auto 40px; }
.row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(58,56,52,.1);
}
.row img { width: 88px; height: 72px; object-fit: cover; border-radius: 24px; }

#oa { padding: 70px 0; }
.oa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.oa-card { padding: 18px; text-align: center; background: #fff; border-radius: 24px; }
.oa-card img { width: 72px; height: 64px; object-fit: cover; margin-bottom: 8px; border-radius: 16px; }
.oa-more { display: none; margin-top: 14px; }
.oa-more.show { display: grid; }
.more-btn { margin: 22px auto 0; display: block; }

.ticker { overflow: hidden; padding: 10px 0 40px; }
.ticker-in { display: flex; gap: 36px; width: max-content; animation: slide 28s linear infinite; font-size: 18px; color: var(--cement); }
@keyframes slide { to { transform: translateX(-50%); } }

#trio { padding: 20px 0 50px; }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trio article { padding: 16px; background: #fff; border-radius: 24px; }
.trio article.private { border-radius: 16px; outline: 1px solid rgba(58,56,52,.16); }
.trio img { width: 100%; height: 148px; object-fit: cover; margin-bottom: 10px; border-radius: 16px; }

.falls {
  width: 1100px;
  margin: 0 auto 30px;
  columns: 3;
  column-gap: 14px;
}
.falls article {
  break-inside: avoid;
  margin-bottom: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 24px;
}
.falls b { display: block; font-size: 28px; }

#quotes { padding: 8px 0 36px; overflow: hidden; }
.marquee { display: flex; gap: 12px; width: max-content; animation: slide 90s linear infinite; }
.marquee.reverse { animation-direction: reverse; margin-top: 12px; }
.quote-card { width: 280px; padding: 16px; flex: 0 0 auto; background: #fff; border-radius: 24px; }
.quote-card p { font-size: 13px; min-height: 70px; }
.quote-card .who { margin-top: 8px; font-size: 12px; color: var(--muted); }

#dlzone { padding: 60px 0; }
.dl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dl-split article { padding: 24px; background: #fff; border-radius: 24px; }
.ends { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.ends a { display: block; text-align: center; padding: 10px 6px; font-size: 13px; background: #fff; border-radius: 24px; }
.ends img { width: 100%; height: 66px; object-fit: cover; margin-bottom: 6px; border-radius: 16px; }

#faq { padding: 50px 0 70px; }
.acc details { padding: 14px 0; border-bottom: 1px solid rgba(58,56,52,.1); }
.acc summary { cursor: pointer; font-size: 16px; }

.article { padding: 8px 0 40px; }
.article p { margin-bottom: 14px; color: var(--muted); text-align: justify; }
.shots { padding: 0 0 50px; }
.shot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.shot-grid img { width: 100%; height: 132px; object-fit: cover; border-radius: 24px; }

.megafoot { width: 1180px; margin: 0 auto 12px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 16px; text-align: left; }
.seo-block { width: 1180px; margin: 0 auto 16px; text-align: left; font-size: 12px; color: #7a726b; }
#footer { background: var(--foot); min-width: 1180px; padding: 36px 0 20px; text-align: center; }
.foot-cols {
  width: 1180px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: left;
}
.foot-cols h4, .megafoot h4 { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.foot-cols a, .megafoot a { display: block; font-size: 12px; color: #7a726b; padding: 3px 0; }
.mini { font-size: 12px; color: #9a928b; letter-spacing: .12em; }
.page-hero, .page-hero .hero-copy { min-height: 640px; }
.page-hero h1.seo-h1 { font-size: 18px; }
.page-hero .hero-shot { height: 180px; }

#index_head h1{font-size:48px;line-height:1.2;font-weight:600}
.seo-line{margin-top:16px;font-size:16px;font-weight:600}
.card#private{border-radius:16px;box-shadow:0 0 0 1px rgba(0,0,0,.16)}
article.private,#private{border-radius:16px;box-shadow:0 0 0 1px rgba(0,0,0,.16)}
