:root {
  --ink: #26231f;
  --muted: #6e675e;
  --paper: #f7f3eb;
  --paper-2: #fffdf8;
  --accent: #a35b2a;
  --line: #d9d0c4;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #713817; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247,243,235,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(9px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-links a { color: var(--ink); text-decoration: none; font-family: Arial, sans-serif; font-size: .92rem; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--accent); }

.hero { padding: 88px 0 70px; border-bottom: 1px solid var(--line); }
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font: 700 .78rem/1.2 Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); letter-spacing: -.045em; max-width: 950px; margin-bottom: 26px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.025em; }
h3 { font-size: 1.35rem; }
.dek { font-size: clamp(1.25rem, 2.4vw, 1.7rem); max-width: 820px; color: #49433c; }
.intro-note { max-width: 760px; color: var(--muted); font-size: 1.05rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  font: 700 .9rem Arial, sans-serif;
}
.button.primary { background: var(--ink); color: var(--paper-2); }
.button:hover { transform: translateY(-1px); }

.section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--paper-2); border: 1px solid var(--line); padding: 28px; min-height: 220px; }
.card p { color: var(--muted); }
.meta { font: .82rem/1.4 Arial, sans-serif; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.quote {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  font-size: 1.45rem;
  color: #403a34;
}

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 14px 0; border-bottom: 1px solid var(--line); }

.page-head { padding: 68px 0 42px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 16px; }
.prose { max-width: 760px; font-size: 1.08rem; }
.prose p:first-of-type { font-size: 1.25rem; }

.site-footer { padding: 40px 0 70px; color: var(--muted); font-family: Arial, sans-serif; font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

@media (max-width: 780px) {
  .nav { align-items: flex-start; padding: 18px 0; flex-direction: column; }
  .nav-links { gap: 14px 18px; }
  .hero { padding-top: 58px; }
  .grid-2, .cards { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
}
