:root {
  --ink: #342a27;
  --muted: #756a62;
  --paper: #f8f3eb;
  --panel: #fffaf4;
  --blue: #294480;
  --line: #e4d8cb;
  --coral: #d98d78;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 84% 10%, #e6d9d0 0, transparent 25rem), var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.site-header, main, footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}

.mark {
  width: 33px;
  height: 33px;
  border-radius: 50% 50% 48% 48%;
  display: grid;
  place-items: center;
  background: var(--blue);
  box-shadow: 0 4px 0 #d9b4a8;
}

.mark span {
  width: 12px;
  height: 16px;
  display: block;
  border: 3px solid #fff9f2;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  transform: rotate(45deg) translate(-1px, -1px);
}

.quiet-link, .text-link, footer a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.hero { padding-top: 88px; padding-bottom: 110px; max-width: 810px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; line-height: 1; }

h1 { max-width: 740px; margin: 0; font-size: clamp(50px, 8vw, 94px); letter-spacing: -.055em; }

.lede { max-width: 660px; margin: 30px 0 0; color: var(--muted); font-size: 21px; }

.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }

.coming-soon {
  display: inline-block;
  padding: 11px 15px;
  border: 1px solid #c9b9ad;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 244, .65);
  font-size: 13px;
  font-weight: 700;
}

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }

.principles article { min-height: 290px; padding: 32px; background: var(--panel); }

.number { margin: 0; color: var(--coral); font-weight: 800; letter-spacing: .1em; }

.principles h2 { margin: 57px 0 12px; font-size: 29px; letter-spacing: -.035em; }

.principles p:last-child { margin: 0; color: var(--muted); }

.legal { max-width: 780px; padding-top: 60px; padding-bottom: 72px; }

.legal h1 { font-size: clamp(48px, 7vw, 72px); }
.legal h2 { margin: 48px 0 12px; font-size: 29px; letter-spacing: -.03em; }
.legal p { max-width: 700px; color: #504640; font-size: 17px; }
.legal .effective { margin-top: 18px; color: var(--muted); font-size: 14px; }
.legal a { color: var(--blue); text-underline-offset: 4px; }

footer {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 90px;
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer p { margin: 0 auto 0 0; }

@media (max-width: 720px) {
  .site-header, main, footer { padding-left: 20px; padding-right: 20px; }
  .site-header { min-height: 72px; }
  .quiet-link { font-size: 12px; }
  .hero { padding-top: 55px; padding-bottom: 70px; }
  .lede { font-size: 18px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 0; }
  .principles h2 { margin-top: 28px; }
  .legal { padding-top: 40px; padding-bottom: 35px; }
  .legal p { font-size: 16px; }
  footer { margin-top: 45px; }
  footer p { flex-basis: 100%; }
}
