:root {
  --sage: #7f9d7a;
  --sage-dark: #405f48;
  --cream: #faf7ef;
  --paper: #fffdf8;
  --terracotta: #c8755b;
  --ink: #26312a;
  --muted: #69746b;
  --line: #ded8c8;
}

* {
  box-sizing: border-box;
}

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

.kit-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line);
}

.kit-header a {
  color: var(--sage-dark);
  font-weight: 850;
  text-decoration: none;
}

.kit-header button {
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--sage-dark);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.kit {
  display: grid;
  gap: 24px;
  width: min(8.5in, calc(100% - 28px));
  margin: 24px auto;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 11in;
  padding: .55in;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(50, 62, 52, .12);
}

.print-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--sage-dark);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.page-kicker {
  margin: 0 0 8px;
  color: var(--terracotta);
  font-size: 11pt;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-title {
  font-size: 28pt;
}

.instructions {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 12pt;
}

.print-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 9pt;
  font-weight: 700;
}

.name-row {
  display: grid;
  grid-template-columns: auto 1fr auto 1.2in;
  gap: 10px;
  align-items: end;
  margin: 14px 0 20px;
  font-size: 10pt;
  font-weight: 800;
}

.line {
  min-height: 24px;
  border-bottom: 1.5px solid var(--ink);
}

.worksheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.worksheet-card {
  min-height: 2.05in;
  padding: 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
}

.worksheet-card h3 {
  margin-bottom: 8px;
  font-size: 16pt;
}

.worksheet-card p,
.worksheet-card li {
  font-size: 11pt;
}

.worksheet-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.draw-box {
  min-height: 3.2in;
  margin-top: 14px;
  border: 2px dashed var(--line);
  border-radius: 8px;
}

.write-area {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.write-area .line {
  min-height: 34px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 12pt;
  font-weight: 800;
}

.choice::before {
  content: "";
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--sage);
  border-radius: 7px;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.rating-row span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-size: 15pt;
  font-weight: 850;
}

.parent-note {
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--sage-dark);
  background: rgba(127, 157, 122, .1);
  border-left: 4px solid var(--sage);
  font-size: 10.5pt;
}

.cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 230, 237, .85) 0 74px, transparent 75px),
    radial-gradient(circle at 13% 82%, rgba(230, 177, 159, .55) 0 82px, transparent 83px),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 6.2in;
  color: var(--sage-dark);
  font-size: 4.25rem;
  font-weight: 600;
}

h2 {
  color: var(--sage-dark);
  font-size: 2.7rem;
  font-weight: 600;
}

h3 {
  color: var(--sage-dark);
  font-size: 1.35rem;
}

.lede {
  max-width: 5.7in;
  color: var(--muted);
  font-size: 1.22rem;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.seed-grid span {
  display: grid;
  place-items: center;
  min-height: 86px;
  color: var(--sage-dark);
  background: rgba(127, 157, 122, .13);
  border: 1px solid rgba(127, 157, 122, .28);
  border-radius: 8px;
  font-weight: 850;
}

footer {
  margin-top: auto;
  color: var(--muted);
  font-weight: 800;
}

.prompt {
  max-width: 6.2in;
  color: var(--muted);
  font-size: 1.05rem;
}

.checklist {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1.12rem;
}

.checklist span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 2px solid var(--sage);
  border-radius: 7px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.menu-grid article {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.reflection {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.reflection label {
  color: var(--sage-dark);
  font-weight: 850;
}

.faces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.faces span {
  min-height: 96px;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.write-line {
  height: 46px;
  border-bottom: 2px solid var(--line);
}

.write-line.short {
  width: 72%;
}

.write-box {
  min-height: 190px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.activity-card {
  min-height: 250px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.activity-card .blank {
  height: 96px;
  margin-top: 16px;
  border: 2px dashed var(--line);
  border-radius: 8px;
}

.planner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.planner-box {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.planner-box h3 {
  margin-bottom: 12px;
}

.choice-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}

.choice-row i {
  width: 24px;
  height: 24px;
  border: 2px solid var(--sage);
  border-radius: 7px;
}

.trace-word {
  margin-top: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.coupon {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-top: 32px;
  padding: 22px;
  text-align: center;
  border: 2px dashed var(--sage);
  border-radius: 8px;
}

@media screen and (max-width: 700px) {
  .kit {
    width: calc(100% - 28px);
  }

  .page {
    min-height: 0;
    padding: 26px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .seed-grid,
  .menu-grid,
  .activity-grid,
  .planner-grid {
    grid-template-columns: 1fr;
  }

  .seed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }

  .menu-grid,
  .activity-grid,
  .planner-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .menu-grid article,
  .activity-card,
  .planner-box {
    min-height: 0;
  }

  .coupon {
    min-height: 0;
    margin-top: 24px;
    overflow-wrap: anywhere;
  }
}

@media print {
  body {
    background: #fff;
  }

  .kit-header {
    display: none;
  }

  .kit {
    display: block;
    width: 100%;
    margin: 0;
  }

  .page {
    width: 8.5in;
    height: 11in;
    min-height: 11in;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    break-after: page;
    page-break-after: always;
  }

  .print-button {
    display: none;
  }
}

@page {
  size: letter;
  margin: 0;
}
