:root {
  color-scheme: dark;
  --background: #181716;
  --panel: #24211f;
  --text: #fff8ee;
  --muted: #d8c7b0;
  --accent: #c79a62;
  --line: rgba(255, 248, 238, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: radial-gradient(circle at top left, rgba(199, 154, 98, 0.18), transparent 34rem), var(--background);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 22px 56px;
}

.topbar,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.hero {
  padding: 78px 0 42px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.intro {
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  max-width: 780px;
  margin: 28px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  border: 1px solid var(--accent);
  color: var(--text);
  display: inline-block;
  padding: 12px 18px;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--line);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card,
.section {
  background: rgba(36, 33, 31, 0.76);
  border: 1px solid var(--line);
  padding: 24px;
}

.section {
  margin-top: 24px;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.facts {
  margin-top: 24px;
}

.facts dl {
  display: grid;
  grid-template-columns: minmax(120px, max-content) 1fr;
  gap: 0;
  margin: 12px 0 0;
}

.facts dt {
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 12px 18px 12px 0;
  text-transform: uppercase;
}

.facts dd {
  border-top: 1px solid var(--line);
  color: var(--text);
  margin: 0;
  padding: 12px 0;
}

.facts dl > dt:first-of-type,
.facts dl > dt:first-of-type + dd {
  border-top: 0;
}

.facts a {
  color: var(--accent);
}

@media (max-width: 560px) {
  .facts dl {
    grid-template-columns: 1fr;
  }

  .facts dd {
    border-top: 0;
    padding-top: 0;
  }
}

.faq {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.faq p,
.card p,
.section p {
  color: var(--muted);
  margin: 0;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 48px;
  padding-top: 24px;
}

@media (max-width: 700px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }
}
