:root {
  --ink: #10231d;
  --ink-soft: #1b342b;
  --paper: #f3f0e9;
  --white: #fffefa;
  --gold: #c3a255;
  --gold-pale: #e5d49c;
  --mist: #d9ded8;
  --line: rgba(211, 220, 213, .26);
  --muted: #b6c0b9;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --page: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-pale); outline-offset: 4px; }
.skip-link { left: 16px; position: absolute; top: -72px; z-index: 10; background: var(--white); color: var(--ink); padding: 10px 14px; }
.skip-link:focus { top: 16px; }
.eyebrow { color: var(--gold-pale); font-size: .72rem; font-weight: 800; letter-spacing: .2em; margin: 0 0 16px; text-transform: uppercase; }
.page-width { width: var(--page); margin-inline: auto; }
.display { font-family: var(--serif); font-weight: 500; letter-spacing: -.045em; line-height: 1.08; }
.button { align-items: center; border: 1px solid var(--gold); display: inline-flex; gap: 12px; justify-content: center; min-height: 48px; padding: 11px 18px; transition: background .2s ease, color .2s ease; }
.button:hover { background: var(--gold); color: var(--ink); }
.button--solid { background: var(--gold); color: var(--ink); }
.button--solid:hover { background: var(--gold-pale); }
.text-link { border-bottom: 1px solid currentColor; display: inline-block; font-size: .85rem; font-weight: 700; letter-spacing: .08em; padding-bottom: 3px; }
.sr-only { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

@media (max-width: 720px) {
  :root { --page: min(100% - 32px, 1180px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
