:root {
  color-scheme: dark;
  --gold: #d1a543;
  --text: #f6edd8;
  --muted: #aaa393;
  --line: #d1a54330;
  --surface: #171713;
  --panel: #22221c;
  --radius: 10px;
  --space: 20px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--text);
  font:
    15px/1.6 "Segoe UI",
    sans-serif;
  background: var(--surface);
}
button,
input,
select {
  font: inherit;
}
a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: #f1cf83;
}
button {
  cursor: pointer;
  color: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid #c3a66e50;
  border-radius: 8px;
  background: #1d1d17d9;
  color: var(--text);
  font-weight: 600;
  transition:
    background 130ms,
    transform 130ms;
}
.button:hover {
  background: #343126;
  color: var(--text);
}
.button:active {
  transform: translateY(1px);
}
.button.gold {
  color: #241c10;
  background: linear-gradient(110deg, #e0ba62, #c99d3e);
  border-color: transparent;
}
.button.gold:hover {
  background: #e8c87b;
}
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #25241ef5, #1b1c18f5);
}
.eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.muted {
  color: var(--muted);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 12px;
  background: #171713a6;
}
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-heading > a {
  font-size: 12px;
}
.section-heading h2 {
  margin: 0;
  font:
    30px/1.2 Georgia,
    serif;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
[hidden] {
  display: none !important;
}
