:root {
  --ink: #252321;
  --muted: #69635c;
  --paper: #f6f1e9;
  --cream: #fffaf2;
  --rust: #a84e35;
  --line: #d8cfc2;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
a { color: inherit; }
.site-header, footer { width: min(1160px, calc(100% - 40px)); margin: auto; display: flex; align-items: center; justify-content: space-between; }
.site-header { min-height: 86px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 750; letter-spacing: .01em; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
nav, footer div { display: flex; gap: 24px; }
nav a, footer a { text-decoration: none; color: var(--muted); font-size: .94rem; }
nav a:hover, footer a:hover { color: var(--rust); }
.hero { width: min(1160px, calc(100% - 40px)); margin: auto; min-height: 650px; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; }
.eyebrow { color: var(--rust); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 800; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; letter-spacing: -.035em; }
.hero h1 { max-width: 850px; margin: 15px 0 24px; font-size: clamp(3.5rem, 8vw, 7.6rem); font-weight: 500; }
h1 em { color: var(--rust); font-weight: 400; }
.lead { max-width: 700px; font-size: clamp(1.08rem, 2vw, 1.35rem); color: var(--muted); }
.links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.links a { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.35); }
.links .primary { color: white; background: var(--ink); border-color: var(--ink); }
.publisher { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 100px max(20px, calc((100vw - 1160px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.publisher h2 { max-width: 520px; margin: 12px 0; font-size: clamp(2.5rem, 5vw, 4.6rem); font-weight: 500; }
.publisher-copy { max-width: 580px; font-size: 1.08rem; color: var(--muted); }
.text-link { display: inline-block; margin-top: 14px; color: var(--rust); font-weight: 700; text-decoration: none; }
.policy { width: min(820px, calc(100% - 40px)); margin: 90px auto 120px; }
.policy h1 { font-size: clamp(3.4rem, 8vw, 6rem); font-weight: 500; margin: 14px 0 30px; }
.policy .intro { font-size: 1.25rem; color: var(--muted); padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.policy section { padding-top: 30px; }
.policy h2 { font-size: 1.75rem; font-weight: 500; letter-spacing: -.02em; }
.policy p, .policy li { color: #4f4a45; }
.policy a { color: var(--rust); }
footer { min-height: 110px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
@media (max-width: 720px) {
  .site-header nav { display: none; }
  .hero { min-height: 580px; }
  .publisher { grid-template-columns: 1fr; gap: 20px; padding-top: 70px; padding-bottom: 70px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}
