:root {
  color-scheme: dark;
  font-family: system-ui, sans-serif;
  color: #eee8d9;
  background: #0b0d0d;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(ellipse at top right, #55411d33, transparent 65%);
}
a {
  color: #e5bd70;
  text-underline-offset: 5px;
}
a:hover {
  color: #fff;
}
a:focus-visible {
  outline: 2px solid #e5bd70;
  outline-offset: 6px;
}
header,
footer {
  padding: 24px max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid #b6934944;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
header nav,
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.16em;
  font:
    26px Georgia,
    serif;
  text-decoration: none;
}
.brand img {
  object-fit: contain;
}
.languages {
  margin-left: auto;
  font-size: 14px;
}
[aria-current] {
  color: #fff;
  text-decoration: underline;
}
main {
  max-width: 1160px;
  margin: auto;
  padding: 36px 24px 80px;
}
.breadcrumb {
  font-size: 14px;
  color: #aaa49a;
}
.intro {
  max-width: 880px;
  padding: 70px 0 36px;
}
.eyebrow {
  color: #d4ae64;
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.12;
  margin: 20px 0;
}
h2 {
  font-size: 30px;
  margin: 0 0 18px;
}
h3 {
  font-weight: 400;
  color: #d4ae64;
  font-size: 18px;
}
.lead {
  font-size: 22px;
  line-height: 1.65;
  color: #bdb7aa;
}
p {
  line-height: 1.85;
}
.content {
  max-width: 820px;
}
.content section {
  padding: 32px 0;
  border-top: 1px solid #b6934944;
}
.content p {
  color: #c9c3b7;
  font-size: 18px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
}
.button {
  display: inline-block;
  border: 1px solid #c19a52;
  padding: 16px 24px;
  text-decoration: none;
}
.characters {
  display: grid;
  gap: 32px;
}
.characters article {
  display: grid;
  grid-template-columns: minmax(180px, 32%) 1fr;
  border: 1px solid #b6934944;
  background: #111413;
}
.characters img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top;
}
.characters article > div {
  padding: 32px;
}
.characters blockquote {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 1px solid #c19a52;
  color: #d4ae64;
  font-style: italic;
}
footer {
  border-top: 1px solid #b6934944;
  font-size: 14px;
  justify-content: space-between;
}
footer p {
  color: #aaa49a;
}
@media (max-width: 640px) {
  header {
    gap: 20px;
    padding: 18px 24px;
  }
  header nav {
    gap: 16px;
  }
  .languages {
    margin-left: 0;
  }
  header > nav:not(.languages) {
    order: 3;
    width: 100%;
    font-size: 14px;
  }
  .intro {
    padding-top: 42px;
  }
  .lead {
    font-size: 19px;
  }
  .characters article {
    grid-template-columns: 1fr;
  }
  .characters img {
    height: 360px;
  }
  .characters article > div {
    padding: 24px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .actions a {
    overflow-wrap: anywhere;
  }
}
