:root {
  color-scheme: light;
  font-family: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, sans-serif;
  color: #35220d;
  background: #f8d978;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #fff3bd, #f4c95d);
}

.card, .document {
  width: min(100%, 720px);
  padding: clamp(24px, 6vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  box-shadow: 0 16px 45px rgba(90, 55, 5, 0.18);
}

.card { text-align: center; }
.bee { font-size: 72px; }
h1 { margin: 8px 0 12px; font-size: clamp(2rem, 8vw, 3.25rem); }
h2 { margin-top: 30px; font-size: 1.25rem; }
p, li { font-size: 1.05rem; line-height: 1.65; }
li + li { margin-top: 6px; }
nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  background: #ef9e22;
  color: #201305;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary { background: #f7df8b; }
.back { color: #6d450a; font-weight: 750; }
.updated, .small { color: #6f624d; }
.small { margin-top: 18px; font-size: 0.9rem; }

@media (max-width: 480px) {
  body { padding: 12px; align-items: start; }
  .card, .document { margin-top: 12px; border-radius: 24px; }
}
