:root {
  --paper: #f7f3ed;
  --milk: #fbf8f3;
  --line: #d8cec2;
  --ink: #4e453d;
  --muted: #7b7168;
  --accent: #9a7f68;
  --accent-dark: #7c6350;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--milk) 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 99, 80, .38);
}

.site-header,
.footer {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand-text {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.policy-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(38px, 6vw, 62px);
}

h2 {
  margin-top: 36px;
  font-size: clamp(25px, 3vw, 34px);
}

p,
li {
  color: var(--muted);
}

ul {
  padding-left: 22px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  margin: 0 0 5px;
}

@media (max-width: 680px) {
  .site-header,
  .footer {
    width: min(100% - 28px, 980px);
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-page {
    width: min(100% - 28px, 900px);
    padding: 48px 0;
  }
}
