:root {
  --ink: #171914;
  --muted: #676b60;
  --paper: #f5f3ea;
  --line: #d8d5c9;
  --accent: #ff5a36;
  --dark: #20251d;
  --white: #fffdf7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 6%, rgba(255, 90, 54, .12), transparent 22rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-underline-offset: .2em; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 650;
}

.nav a { text-decoration: none; }

.brand { display: inline-flex; align-items: center; gap: 12px; }

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--dark);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.hero { padding: clamp(76px, 12vw, 148px) 0 88px; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1, h2 { margin-top: 0; line-height: 1.05; letter-spacing: -.045em; }

.hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9.2vw, 7.4rem);
  font-weight: 500;
}

.hero h1 span { color: var(--accent); }

.lede {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}

.button.primary { color: var(--white); background: var(--dark); }
.button.secondary { background: transparent; }

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

.card { min-height: 280px; padding: 38px 34px 42px 0; }
.card + .card { padding-left: 34px; border-left: 1px solid var(--line); }
.number { color: var(--accent); font: 700 .75rem/1 monospace; }
.card h2 { margin: 82px 0 14px; font-size: 1.5rem; }
.card p { margin: 0; color: var(--muted); }

.statement {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  padding: 100px 0;
}
.statement h2 { max-width: 360px; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 500; }
.statement-copy { max-width: 650px; color: var(--muted); font-size: 1.06rem; }

.policy { padding: 86px 0 40px; }
.policy-header { max-width: 860px; padding-bottom: 64px; }
.policy-header h1 { margin-bottom: 28px; font-family: Georgia, serif; font-size: clamp(3.2rem, 7vw, 6.2rem); font-weight: 500; }
.updated { margin-top: 26px; color: var(--muted); font-size: .88rem; }
.policy-body { max-width: 820px; margin-left: auto; }
.policy-body section { padding: 38px 0; border-top: 1px solid var(--line); }
.policy-body h2 { margin-bottom: 15px; font-size: 1.35rem; letter-spacing: -.02em; }
.policy-body p { margin: 0; color: var(--muted); font-size: 1.02rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
}
footer div { display: flex; gap: 24px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { min-height: 70px; }
  .hero { padding: 72px 0 64px; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: auto; padding: 30px 0 34px; }
  .card + .card { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .card h2 { margin-top: 42px; }
  .statement { grid-template-columns: 1fr; gap: 22px; padding: 70px 0; }
  .policy { padding-top: 68px; }
  footer { flex-direction: column; }
}
