:root {
  --bg: #fff;
  --ink: #161616;
  --muted: #686868;
  --line: #d9d7d0;
  --soft: #f5f3ee;
  --accent: #e25d3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

header,
footer {
  padding: 28px clamp(20px, 5vw, 72px);
}

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

.brand {
  color: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

a {
  color: inherit;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) 0;
}

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

h1 {
  margin: 12px 0 36px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: .95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin: 38px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--soft);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
