:root {
  --bg: #faf8f4;
  --text: #2a2722;
  --muted: #6b665e;
  --accent: #8a6d3b;
  --rule: #e6e0d4;
  --max-width: 680px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 48px;
}

/* Hero (index) */
.hero {
  text-align: center;
  padding: 32px 0 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
}

.title {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.title-en {
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.tagline {
  font-size: 18px;
  color: var(--muted);
  margin: 8px 0 4px;
}

.tagline-zh {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* Sections */
.about h2,
.lang-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px;
  letter-spacing: 0.01em;
}

.lang-block h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text);
}

p { margin: 12px 0; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 109, 59, 0.3);
  transition: border-color 0.15s ease;
}

a:hover {
  border-bottom-color: var(--accent);
}

/* Privacy page header */
.page-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.breadcrumb {
  margin: 0 0 16px;
  font-size: 15px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px;
}

.subtitle {
  font-weight: 400;
  color: var(--muted);
  font-size: 24px;
}

.meta {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

/* Footer */
.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  border-bottom-color: rgba(107, 102, 94, 0.3);
}

.footer a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.copyright {
  margin: 12px 0 0;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 600px) {
  .container { padding: 40px 20px 32px; }
  .title { font-size: 36px; }
  .page-header h1 { font-size: 26px; }
  .subtitle { font-size: 20px; }
}
