:root {
  --bg: #f3f0e8;
  --paper: #fffdf7;
  --ink: #171717;
  --muted: #67645f;
  --line: #cbc6ba;
  --accent: #d84a2f;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(rgba(23, 23, 23, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 24px 24px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.6;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, .94);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max);
  margin: auto;
  min-height: 70px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .08em;
}

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

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .88rem;
}

nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--ink);
}

main {
  max-width: var(--max);
  margin: auto;
  padding: 0 24px;
}

.hero {
  min-height: 74vh;
  padding: 88px 0 60px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  letter-spacing: -.08em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.055em;
  max-width: 820px;
}

h3 { font-size: 1.08rem; }

.lead {
  max-width: 760px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

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

.button {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 12px 16px;
  text-decoration: none;
  background: var(--ink);
  color: white;
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
}

section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
}

.copy {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  max-width: 760px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.list li {
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}

.list li::before {
  content: "→ ";
  color: var(--accent);
}

.contact-box {
  background: var(--ink);
  color: white;
  padding: 42px;
}

.contact-box a {
  color: white;
  text-underline-offset: 5px;
}

footer {
  max-width: var(--max);
  margin: auto;
  padding: 30px 24px 56px;
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer a { text-underline-offset: 3px; }

.legal {
  max-width: 820px;
  margin: auto;
  padding: 80px 24px 120px;
}

.legal h1 {
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

.legal h2 {
  font-size: 1.5rem;
  letter-spacing: -.02em;
  margin-top: 48px;
}

.legal p,
.legal li {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  background: var(--paper);
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 64px; }
  nav { display: none; }
}
