@import url("fonts/brand.css");
:root {
  --green: #243a36;
  --ink: #283633;
  --paper: #fbfaf7;
  --line: #d7d1c9;
  --muted: #5b6461;
  --accent-text: #8a5446;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 Onest, system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
}
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--accent-text);
}
a:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}
.legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(16px, 5vw, 48px);
  background: var(--green);
  color: #fff;
}
.legal-brand {
  text-decoration: none;
}
.legal-brand b {
  display: block;
  font: 500 24px/1.1 "Bricolage Grotesque", system-ui, sans-serif;
}
.legal-brand small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #e9dcd5;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  white-space: nowrap;
}
.legal-head a:hover {
  color: #f1d9cf;
}
.legal-head a:focus-visible {
  outline-color: #fff;
}
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(16px, 5vw, 32px) 56px;
}
h1 {
  margin: 0 0 18px;
  font: 400 clamp(34px, 8.5vw, 60px)/1.05 "Bricolage Grotesque", system-ui, sans-serif;
  hyphens: auto;
  overflow-wrap: break-word;
  color: var(--green);
}
.lead {
  margin: 0 0 40px;
  color: var(--muted);
}
section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
h2 {
  margin: 0 0 14px;
  font: 500 26px/1.25 "Bricolage Grotesque", system-ui, sans-serif;
  color: var(--green);
}
h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  font-weight: 600;
}
p {
  margin: 0 0 14px;
}
dl {
  display: grid;
  grid-template-columns: minmax(150px, 30%) 1fr;
  gap: 10px 24px;
  margin: 14px 0 0;
}
dt {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--accent-text);
  padding-top: 2px;
}
dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.legal-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px clamp(16px, 5vw, 32px) 48px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}
.legal-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.legal-foot nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.legal-foot p {
  margin: 0;
  align-self: center;
}
@media (max-width: 560px) {
  dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  dd {
    margin-bottom: 12px;
  }
  .legal-brand small {
    display: none;
  }
}
