:root {
  --paper: #f7f2e8;
  --paper-deep: #ece2d2;
  --ink: #24221e;
  --muted: #6d675d;
  --line: #d8cebd;
  --accent: #d59632;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, transparent 0, rgba(77, 58, 27, 0.025) 50%, transparent 100%),
    var(--paper);
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8b5916;
}

.site-header,
main,
.site-footer {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 25px;
  border-bottom: 1px solid var(--line);
  font-family: "Trebuchet MS", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.coin {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #bc7921;
  border-radius: 50%;
  background: var(--accent);
  color: #fff9ed;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.top-nav a {
  text-decoration: none;
}

.top-nav a[aria-current="page"] {
  color: var(--ink);
}

main {
  padding: 78px 0 60px;
}

.eyebrow {
  margin: 0 0 19px;
  color: #9a661e;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.65rem, 8vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.meta {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
}

.meta span {
  padding-inline: 7px;
  color: #aaa194;
}

.rule {
  width: 54px;
  height: 3px;
  margin: 48px 0;
  background: var(--accent);
}

.policy {
  font-size: 1.08rem;
  line-height: 1.78;
}

.policy h2 {
  margin: 2.65em 0 0.7em;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.policy p,
.policy ul {
  margin: 0 0 1.25em;
}

.policy ul {
  padding-left: 1.15em;
}

.policy li {
  padding-left: 0.25em;
  margin-bottom: 0.38em;
}

.contact {
  margin-top: 1.8em;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.3);
}

.contact p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

@media (max-width: 520px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, 760px);
  }

  .site-header {
    padding-top: 20px;
  }

  .top-nav {
    gap: 12px;
  }

  main {
    padding-top: 54px;
  }

  .policy {
    font-size: 1rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 10px;
  }
}
