:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07140f;
  color: #f4eedb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(177, 126, 37, 0.22), transparent 34rem),
    linear-gradient(180deg, #0a1c14, #06100c 45rem);
  line-height: 1.65;
}

a {
  color: #f4ca66;
}

a:hover,
a:focus-visible {
  color: #ffe5a5;
}

.site-header,
.site-footer {
  background: rgba(2, 11, 7, 0.82);
  border-color: rgba(244, 202, 102, 0.24);
}

.site-header {
  border-bottom: 1px solid rgba(244, 202, 102, 0.24);
}

.nav,
.site-footer,
main {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.nav {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  color: #fff1bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-links,
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}

.nav-links a,
.language-links a {
  font-weight: 700;
  text-underline-offset: 0.25em;
}

main {
  padding: 4rem 0 5rem;
}

.hero {
  max-width: 54rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #e6b94f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: #fff7da;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.35rem;
}

.lead {
  color: #ded6be;
  font-size: 1.15rem;
}

.language-links {
  margin-top: 1.5rem;
}

.content-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  background: rgba(12, 32, 23, 0.88);
  border: 1px solid rgba(244, 202, 102, 0.28);
  border-radius: 1rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.content-card + .content-card {
  margin-top: 2rem;
}

.content-card p,
.content-card li {
  max-width: 70ch;
}

.facts {
  padding-left: 1.25rem;
}

.question {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(244, 202, 102, 0.14);
}

.question:first-of-type {
  border-top: 0;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(244, 202, 102, 0.24);
  color: #c8c0aa;
}

@media (max-width: 42rem) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  main {
    padding-top: 2.5rem;
  }
}
