:root {
  --bg: #f7f7f4;
  --surface: #fff;
  --text: #282925;
  --muted: #73756f;
  --line: #dfe1da;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--text); background: var(--bg); font-family: Georgia, "Times New Roman", serif; line-height: 1.7; }
a { color: inherit; }
.peer-header, .peer-footer, .peer-shell { width: min(calc(100% - 48px), 1080px); margin: 0 auto; }
.peer-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 86px; border-bottom: 1px solid var(--line); }
.peer-logo { font: 700 1.1rem/1 Arial, sans-serif; text-decoration: none; }
.peer-logo span { color: var(--muted); }
.peer-header nav { display: flex; gap: 20px; font: .78rem/1.4 Arial, sans-serif; }
.peer-header nav a, .peer-footer a { color: var(--muted); text-decoration: none; }
.peer-header nav a:hover, .peer-footer a:hover { color: var(--text); }
.peer-hero { max-width: 760px; padding: 105px 0 95px; }
.peer-kicker, .peer-label { margin: 0 0 20px; color: var(--muted); font: .72rem/1.4 Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.peer-hero h1 { max-width: 650px; margin: 0 0 24px; font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 400; line-height: 1.05; }
.peer-hero-copy > p:not(.peer-kicker) { max-width: 560px; margin-bottom: 26px; color: var(--muted); font-size: 1.1rem; }
.peer-button { color: var(--text); font: .82rem/1.4 Arial, sans-serif; text-underline-offset: 4px; }
.peer-button:hover { color: var(--muted); }
.peer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 24px 0 45px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.peer-columns h2 { max-width: 450px; margin: 8px 0 0; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 400; line-height: 1.15; }
.peer-list p { margin: 0; padding: 9px 0; border-bottom: 1px solid var(--line); }
.peer-list span { display: inline-block; width: 92px; color: var(--muted); font: .7rem/1.4 Arial, sans-serif; text-transform: uppercase; }
.peer-links { display: grid; grid-template-columns: repeat(3, 1fr); margin: 65px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.peer-links a { min-height: 130px; padding: 18px 0; border-right: 1px solid var(--line); text-decoration: none; }
.peer-links a:not(:first-child) { padding-left: 20px; }
.peer-links a:last-child { border-right: 0; }
.peer-links a:hover strong { text-decoration: underline; text-underline-offset: 5px; }
.peer-links span, .peer-links small { display: block; color: var(--muted); font: .7rem/1.4 Arial, sans-serif; }
.peer-links strong { display: block; margin-top: 43px; font-size: 1.25rem; font-weight: 400; }
.peer-footer { display: flex; justify-content: space-between; padding: 22px 0 30px; color: var(--muted); font: .7rem/1.4 Arial, sans-serif; }
@media (max-width: 760px) {
  .peer-header, .peer-footer, .peer-shell { width: min(calc(100% - 32px), 1080px); }
  .peer-header { align-items: flex-start; padding: 20px 0 16px; }
  .peer-header nav { flex-wrap: wrap; justify-content: flex-end; gap: 8px 14px; }
  .peer-hero { padding: 70px 0 65px; }
  .peer-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .peer-columns { grid-template-columns: 1fr; gap: 30px; }
  .peer-links { grid-template-columns: 1fr; }
  .peer-links a { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .peer-links a:not(:first-child) { padding-left: 0; }
  .peer-links a:last-child { border-bottom: 0; }
  .peer-links strong { margin-top: 12px; }
}
