:root {
  --ink: #171512;
  --paper: #f5f0e6;
  --muted: #615b52;
  --line: #c9bca9;
  --accent: #c2462d;
  --green: #496b46;
  --blue: #244f70;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(36, 79, 112, 0.16), transparent 34rem),
    radial-gradient(circle at 82% 16%, rgba(194, 70, 45, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(73, 107, 70, 0.08), transparent 40rem),
    var(--paper);
  font-family: "Avenir Next", "Futura", "Trebuchet MS", sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100vw - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.brand {
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 96px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(96px, 22vw, 260px);
  font-weight: 700;
  line-height: 0.78;
}

.dek {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.12;
}

.panel {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.link {
  display: block;
  width: fit-content;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.note {
  margin: 28px 0 0;
  border-left: 4px solid var(--blue);
  padding-left: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.address {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.panel .link + .link {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 48px;
  border-top: 2px solid var(--line);
  padding-top: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a,
.footer-copy {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a {
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.legal {
  max-width: 720px;
  padding: 48px 0 24px;
}

.legal h1 {
  margin: 0 0 32px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1;
}

.legal h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .shell {
    width: min(100vw - 28px, 1120px);
    padding-top: 22px;
  }

  .topbar {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 96px;
    padding-bottom: 24px;
  }

  .legal {
    padding-top: 32px;
  }

  .site-footer {
    margin-top: 32px;
  }
}
