:root {
  color-scheme: light;
  --ink: #211a18;
  --muted: #6f625d;
  --line: #eadfda;
  --paper: #fffaf6;
  --panel: #ffffff;
  --coral: #f04b44;
  --gold: #ffb548;
  --berry: #7b1f78;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 181, 72, 0.22), transparent 28rem),
    linear-gradient(135deg, #fff7ef 0%, #f6edf4 50%, #fffaf6 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

a {
  color: #bc453d;
}

.page {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0 48px;
}

.brand {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.links {
  display: flex;
  gap: 18px;
}

.links a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.links a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  display: grid;
  gap: 18px;
  padding: 44px 0 54px;
}

.eyebrow {
  margin: 0;
  color: #bc453d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 760;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

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

article,
.copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(86, 49, 42, 0.08);
}

article {
  padding: 22px;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

article p,
.copy p,
.copy li {
  color: var(--muted);
  line-height: 1.65;
}

.document {
  max-width: 860px;
}

.doc-header {
  padding: 32px 0 28px;
}

.doc-header h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.updated {
  color: var(--muted);
}

.copy {
  padding: 30px;
}

.copy h2 {
  margin-top: 28px;
}

.copy h2:first-child {
  margin-top: 0;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 1060px);
  }

  .nav,
  .links,
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

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