:root {
  --cream: #F4E8D0;
  --forest: #1B4D3E;
  --gold: #C4A35A;
  --ink: #1a2a24;
  --paper: #fffaf1;
  --mute: #5c6b64;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
}

h1, h2, h3 {
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "STSong", Georgia, serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

svg { display: block; }

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: var(--paper);
  border-bottom: 1px solid #e6d5b3;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 20px;
  color: var(--forest);
}

.spine {
  width: 7px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), var(--forest));
}

nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }

nav a {
  font-size: 14px;
  color: var(--forest);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover { border-bottom-color: var(--gold); }

.cover {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 420px;
  background:
    linear-gradient(110deg, var(--forest) 0 54%, var(--gold) 54% 58%, var(--cream) 58%);
}

.cover-panel {
  padding: 64px 48px 56px;
  color: #f6efe0;
}

.cover-panel h1 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.cover-panel p {
  max-width: 36em;
  margin-bottom: 26px;
  color: #e6dcc4;
}

.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-weight: 800;
  padding: 12px 24px;
}

.cta:hover { background: #d4b56c; }

.cover-art {
  display: grid;
  place-items: center;
  padding: 40px;
}

.pane {
  width: 260px;
  background: var(--paper);
  border: 3px solid var(--forest);
  padding: 16px;
  box-shadow: 16px 16px 0 var(--forest);
}

.pane .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  margin-right: 6px;
}

.pane-row {
  height: 10px;
  background: #e8d9b8;
  margin-top: 14px;
}

.pane-row.short { width: 60%; }
.pane-row.mid { width: 80%; }

.pane-chip {
  margin-top: 18px;
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  font-size: 12px;
  padding: 4px 10px;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 20px;
}

.wrap h2 {
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 12px;
}

.wrap > p {
  color: var(--mute);
  margin-bottom: 22px;
  max-width: 46em;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 12px;
}

.icon-row article { text-align: center; }

.icon-row svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  color: var(--forest);
}

.icon-row h3 {
  font-size: 17px;
  color: var(--forest);
  margin-bottom: 8px;
}

.icon-row p { font-size: 14px; color: var(--mute); text-align: left; }

.split-note {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.split-note article {
  background: var(--paper);
  padding: 20px 18px;
  border-top: 4px solid var(--gold);
}

.split-note h3 { font-size: 17px; color: var(--forest); margin-bottom: 8px; }

.split-note p { font-size: 14px; color: var(--mute); }

.ticks { list-style: none; display: grid; gap: 14px; }

.ticks li {
  background: var(--paper);
  padding: 16px 18px 16px 48px;
  position: relative;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 16px;
  height: 8px;
  border-left: 3px solid var(--forest);
  border-bottom: 3px solid var(--forest);
  transform: rotate(-40deg);
}

.ticks strong { display: block; color: var(--forest); margin-bottom: 6px; }

.ticks p { font-size: 14px; color: var(--mute); }

.checklist {
  list-style: none;
  background: var(--paper);
  padding: 8px 8px 8px 12px;
  border: 1px solid #e6d5b3;
}

.checklist li {
  position: relative;
  padding: 12px 12px 12px 40px;
  border-bottom: 1px dashed #e6d5b3;
  color: var(--ink);
}

.checklist li:last-child { border-bottom: 0; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(-40deg);
}

.table-wrap { overflow-x: auto; background: var(--paper); }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 14px;
}

th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e6d5b3;
  vertical-align: top;
}

th {
  background: var(--forest);
  color: var(--cream);
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", Georgia, serif;
}

.rail {
  list-style: none;
  border-left: 3px solid var(--gold);
  margin-left: 12px;
  padding-left: 28px;
}

.rail li {
  position: relative;
  padding-bottom: 26px;
}

.rail li::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--forest);
  border: 3px solid var(--gold);
}

.rail h3 { color: var(--forest); font-size: 18px; margin-bottom: 6px; }

.rail p { color: var(--mute); font-size: 14px; }

.faq-cols {
  column-count: 2;
  column-gap: 18px;
}

.faq-cols details {
  break-inside: avoid;
  background: var(--paper);
  margin-bottom: 12px;
  padding: 8px 14px 4px;
  border: 1px solid #e6d5b3;
}

.faq-cols summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--forest);
  padding: 8px 0;
}

.faq-cols p {
  font-size: 14px;
  color: var(--mute);
  padding-bottom: 10px;
}

.foot {
  margin-top: 28px;
  background: var(--forest);
  color: #e8dcc0;
  padding: 32px 24px 40px;
}

.foot div { max-width: 1080px; margin: 0 auto; }

.foot p { font-size: 13px; margin-bottom: 6px; }

@media (max-width: 960px) {
  .cover { grid-template-columns: 1fr; background: var(--forest); }
  .icon-row,
  .split-note,
  .faq-cols { grid-template-columns: 1fr 1fr; column-count: 1; }
}

@media (max-width: 640px) {
  .bar { flex-direction: column; align-items: flex-start; }
  .cover-panel { padding: 36px 22px; }
  .cover-panel h1 { font-size: 28px; }
  .icon-row,
  .split-note { grid-template-columns: 1fr; }
}

#news .news-list { column-count: 2; column-gap: 36px; }
#news article { break-inside: avoid; border-top: 3px solid var(--gold); padding: 12px 0 18px; margin-bottom: 8px; }
#news h3 { font-family: "Palatino Linotype", Palatino, serif; color: var(--forest); font-size: 18px; margin: 0 0 6px; }
#news time { display: block; color: var(--gold); font-size: 12px; margin-bottom: 8px; }
#news p { margin: 0; color: var(--mute); font-size: 14px; }
@media (max-width: 800px) { #news .news-list { column-count: 1; } }
