:root {
  --rock: #202a2d;
  --ink: #172024;
  --muted: #677175;
  --paper: #f3f1ea;
  --line: #d6d4cb;
  --ore: #c98227;
}

* { box-sizing: border-box; }

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

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 4% 8%, rgba(201, 130, 39, 0.09), transparent 22rem),
    linear-gradient(115deg, rgba(23, 32, 36, 0.018) 25%, transparent 25%) 0 0 / 18px 18px,
    var(--paper);
}

a { color: inherit; text-decoration-color: var(--ore); text-underline-offset: 3px; }
a:hover { color: #9b5f17; }

.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.83rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: var(--rock);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  color: #f8bd61;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.top-nav, .site-footer { font-family: "Trebuchet MS", sans-serif; }
.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: #9d641c; font-family: "Trebuchet MS", sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
h1 { 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: #aaa8a0; }
.rule { width: 54px; height: 3px; margin: 48px 0; background: var(--ore); }

.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 { margin-bottom: 0.38em; padding-left: 0.25em; }
.contact { margin-top: 1.8em; padding: 22px 24px; border-left: 3px solid var(--ore); background: rgba(255, 255, 255, 0.31); }
.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-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; }
}
