:root {
  --paper: #fbf5e9;
  --paper-deep: #f5ebd8;
  --card: #fffdf7;
  --ink: #4a3826;
  --ink-soft: #6e5b45;
  --line: rgba(74, 56, 38, .16);
  --sage: #8fbf9f;
  --sage-deep: #5e9974;
  --sky: #a9cde8;
  --lavender: #b8a8d4;
  --rose: #e8a3b4;
  --gold: #e4b15c;
  --shadow: 0 14px 36px -20px rgba(74, 56, 38, .35);
  --display: "Baloo 2", "Nunito", sans-serif;
  --body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body);
  font-size: 17px; line-height: 1.72;
  background-image: radial-gradient(rgba(74,56,38,.035) 1px, transparent 1.5px);
  background-size: 28px 28px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { width: min(1060px, calc(100% - 40px)); margin: 0 auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 10px; top: 10px; z-index: 10; padding: 8px 14px; background: var(--ink); color: white; }
header { position: sticky; top: 0; z-index: 5; background: rgba(251,245,233,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
nav { min-height: 68px; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.35rem; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: .95rem; }
.nav-links a { text-decoration: none; }
.button { display: inline-flex; justify-content: center; align-items: center; padding: 11px 22px; border-radius: 999px; background: var(--ink); color: var(--paper); font-family: var(--display); font-weight: 700; text-decoration: none; box-shadow: var(--shadow); }
.hero { padding: 82px 0 68px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--sage-deep); font-family: var(--display); font-size: 1rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--display); line-height: 1.16; }
h1 { margin: 12px 0 20px; font-size: clamp(2.6rem, 6vw, 4.3rem); letter-spacing: -.025em; }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3rem); }
h3 { margin: 0 0 8px; font-size: 1.3rem; }
.lede { max-width: 690px; color: var(--ink-soft); font-size: 1.2rem; }
.hero-art { padding: 26px; border: 1px solid var(--line); border-radius: 38% 62% 50% 50%; background: linear-gradient(145deg, #e9f3e9, #f6e6df); box-shadow: var(--shadow); }
.hero-art img { max-height: 410px; margin: auto; object-fit: contain; }
section { padding: 76px 0; }
.tint { background: rgba(143,191,159,.16); border-block: 1px solid rgba(94,153,116,.12); }
.section-intro { max-width: 720px; margin-bottom: 34px; color: var(--ink-soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.card .number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 15px; border-radius: 50%; background: var(--paper-deep); font-family: var(--display); font-weight: 800; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 58px; }
.prose h2:first-child { margin-top: 0; }
.prose li { margin-bottom: 10px; }
.prompt { margin: 30px 0; padding: 26px 30px; border-left: 5px solid var(--sage-deep); border-radius: 0 22px 22px 0; background: var(--card); box-shadow: var(--shadow); }
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.related a { display: block; padding: 24px; background: var(--card); border: 1px solid var(--line); border-radius: 22px; text-decoration: none; }
.related span { color: var(--sage-deep); font-weight: 800; }
.cta { text-align: center; padding: 42px; background: linear-gradient(135deg, rgba(169,205,232,.42), rgba(232,163,180,.28)); border: 1px solid var(--line); border-radius: 30px; }
.cta p { max-width: 620px; margin: 0 auto 22px; }
.note { padding: 20px 24px; color: var(--ink-soft); background: var(--paper-deep); border-radius: 18px; font-size: .95rem; }
footer { padding: 42px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .92rem; }
.foot { display: flex; justify-content: space-between; gap: 30px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 760px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 54px; }
  .hero-grid, .cards, .related { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: auto; }
  .foot { flex-direction: column; }
}
