:root {
  --paper: #f8f5f0;
  --ink: #251f1a;
  --muted: #6f645b;
  --line: #ded5ca;
  --accent: #ef4f5f;
  --gold: #c99a38;
  --card: #fffaf2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: #9b3b24;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 240, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  gap: 18px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.hero {
  padding: 72px 0 46px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0 64px;
}

.tile,
.doc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(37, 31, 26, 0.08);
}

.tile {
  padding: 22px;
}

.tile h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.tile p {
  margin: 0 0 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.doc {
  margin: 42px 0 70px;
  padding: clamp(24px, 4vw, 54px);
}

.doc h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.doc h2 {
  margin-top: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.2;
}

.doc h3 {
  margin-top: 24px;
  font-size: 18px;
}

.doc p,
.doc li {
  color: #3a332d;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  background: #fff2d3;
  color: #40311a;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
