* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
img {
  display: block;
}
figure {
  margin: 0;
}
figcaption {
  font: 12px/1.6 var(--mono);
  padding-top: 12px;
  color: var(--muted);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.07;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.8rem, 6.4vw, 6.1rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 500;
}
h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
p {
  margin-bottom: 1.2em;
}
button,
.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  font-weight: 650;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  min-height: 48px;
  border-radius: var(--radius, 0);
}
button:hover,
.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--contrast, #fff);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
}
.wrap {
  max-width: 1320px;
  margin: auto;
  padding: 0 48px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px;
  z-index: 99;
}
.skip:focus {
  top: 12px;
}
.masthead {
  border-bottom: 1px solid var(--line);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 105px;
}
.brand {
  font-size: 23px;
  font-weight: 750;
  line-height: 1.05;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.05em;
}
.brand-mark {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.nav a[aria-current="page"] {
  text-decoration: underline;
}
.nav a:last-child {
  border: 1px solid var(--line);
  padding: 9px 15px;
}
.eyebrow {
  font: 12px/1.4 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
  margin-bottom: 22px;
}
.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  max-width: 630px;
  color: var(--muted);
}
.hero {
  padding-top: 72px;
  padding-bottom: 78px;
}
.hero-actions {
  display: flex;
  gap: 23px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 32px;
}
.section-head h2 {
  margin: 0;
}
.section-head p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius, 0);
  background: var(--card);
}
.card h3 a {
  text-decoration: none;
}
.card h3 a:hover {
  text-decoration: underline;
}
.card p {
  color: var(--muted);
}
.card .eyebrow {
  color: var(--accent);
}
.card .more {
  font-size: 14px;
  font-weight: 650;
}
.strip {
  border-block: 1px solid var(--line);
  padding: 21px 0;
  font: 13px/1.5 var(--mono);
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.newsletter {
  margin-block: 62px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  border: 1px solid var(--line);
  background: var(--tint);
  border-radius: var(--radius, 0);
}
.newsletter h2 {
  font-size: 2.7rem;
}
.newsletter p {
  max-width: 480px;
}
.newsletter .email-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin: 0 0 8px;
}
input:not([type="checkbox"]):not([type="hidden"]),
textarea,
select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 0);
  padding: 13px 14px;
  min-height: 48px;
}
textarea {
  resize: vertical;
  min-height: 150px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.fine {
  font-size: 13px;
  color: var(--muted);
}
.footer {
  padding-block: 45px;
  border-top: 1px solid var(--line);
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 350px;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 12px 22px;
  max-width: 470px;
}
.footer nav a {
  font-size: 13px;
}
.page-head {
  padding-top: 60px;
  padding-bottom: 44px;
}
.page-head h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  max-width: 1050px;
}
.crumb {
  font: 12px var(--mono);
  margin-bottom: 32px;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  padding-bottom: 65px;
}
.article-nav {
  font-size: 13px;
  align-self: start;
  position: sticky;
  top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.article-nav a {
  display: block;
  margin: 12px 0;
}
.prose {
  min-width: 0;
}
.prose h2 {
  font-size: 2rem;
  letter-spacing: -0.025em;
  margin-top: 48px;
}
.prose h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  letter-spacing: -0.015em;
}
.prose p,
.prose li {
  max-width: 76ch;
}
.prose li {
  margin-bottom: 12px;
}
.prose ul,
.prose ol {
  padding-left: 24px;
}
.prose a {
  color: var(--accent);
}
.prose blockquote {
  font-size: 1.35rem;
  border-left: 3px solid var(--accent);
  padding: 15px 0 15px 25px;
  margin: 30px 0;
}
.note {
  background: var(--tint);
  border-left: 3px solid var(--accent);
  padding: 24px;
  margin-block: 30px;
}
.note p:last-child {
  margin-bottom: 0;
}
.table-wrap {
  overflow: auto;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
td,
th {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}
th {
  font: 12px var(--mono);
  background: var(--tint);
}
.sources {
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 10px;
  font-size: 14px;
}
.simple {
  max-width: 780px;
  padding-bottom: 55px;
}
.form-stack {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.form-stack button {
  justify-self: start;
}
.status:empty {
  display: none;
}
.status {
  margin-top: 15px;
}
.filter-controls {
  display: flex;
  gap: 18px;
  align-items: end;
  margin-block: 25px;
}
.filter-controls > div {
  flex: 1;
}
.filter-controls > div:last-child {
  max-width: 270px;
}
.result-count {
  font: 12px var(--mono);
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.empty {
  padding: 30px;
  border: 1px dashed var(--line);
}
.feature-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.home .article-meta {
  display: none;
}
.badge {
  display: inline-block;
  border: 1px solid var(--line);
  font: 11px var(--mono);
  padding: 6px 10px;
  margin-bottom: 17px;
}
.article-meta {
  font: 12px/1.6 var(--mono);
  color: var(--muted);
  margin-top: 25px;
}
.related {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.print-only {
  display: none;
}
@media (max-width: 1050px) {
  .wrap {
    padding-inline: 30px;
  }
  .masthead .wrap {
    gap: 25px;
    flex-wrap: wrap;
    padding-block: 24px;
  }
  .nav {
    gap: 18px;
  }
  .article-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 35px;
  }
  .newsletter {
    gap: 35px;
    padding: 30px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-inline: 22px;
  }
  .masthead .wrap {
    gap: 22px;
    min-height: 0;
  }
  .nav {
    width: 100%;
    margin: 0;
    gap: 12px 20px;
    flex-wrap: wrap;
  }
  .nav a {
    font-size: 13px;
  }
  .nav a:last-child {
    padding: 5px 10px;
  }
  .hero {
    padding-block: 45px;
  }
  .section {
    padding-block: 42px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 20px;
  }
  .grid,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .newsletter {
    margin-block: 38px;
    padding: 26px;
    gap: 20px;
  }
  .newsletter .email-row {
    flex-wrap: wrap;
  }
  .newsletter .email-row input {
    flex: 1 1 200px;
  }
  .newsletter h2 {
    font-size: 2.1rem;
  }
  .footer .wrap {
    display: block;
  }
  .footer nav {
    justify-content: flex-start;
    margin-top: 24px;
  }
  .article-layout {
    display: block;
  }
  .article-nav {
    position: static;
    margin-bottom: 35px;
  }
  .article-nav a {
    display: inline-block;
    margin: 8px 15px 8px 0;
  }
  .page-head {
    padding-top: 35px;
  }
  .card {
    padding: 25px;
  }
  .filter-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .filter-controls > div:last-child {
    max-width: none;
  }
  h1 {
    letter-spacing: -0.04em;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }
  .masthead,
  .footer,
  .newsletter,
  .article-nav,
  .no-print,
  .filter-controls {
    display: none !important;
  }
  .wrap {
    max-width: none;
    padding: 0;
  }
  .article-layout {
    display: block;
  }
  .prose a {
    color: inherit;
  }
  .print-only {
    display: block;
  }
  .page-head {
    padding-top: 0;
  }
  .card,
  .note {
    break-inside: avoid;
  }
  .prose h2 {
    break-after: avoid;
  }
  input,
  textarea {
    border-color: #888 !important;
    background: white !important;
    color: black !important;
  }
}
:root {
  --paper: #fcf9ed;
  --ink: #203d37;
  --muted: #4c675f;
  --accent: #205b51;
  --line: #cad4c5;
  --tint: #eef0da;
  --card: #fffdf6;
  --radius: 18px;
  --sans: "Trebuchet MS", "Segoe UI", sans-serif;
  --mono: "Courier New", monospace;
}
.brand {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -0.055em;
}
.brand span:last-child {
  max-width: 180px;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.family-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 55px;
}
.family-hero h1 {
  font-size: clamp(3.1rem, 5.7vw, 5.7rem);
}
.family-hero h1 em {
  color: #9d482c;
  font-weight: 400;
}
.family-hero .lede {
  font-size: 18px;
}
.family-art {
  border-radius: 150px 150px 20px 20px;
  background: #f2df91;
  overflow: hidden;
  border: 1px solid #dcd19a;
}
.family-art svg {
  display: block;
  width: 100%;
}
.family-art figcaption {
  padding: 16px 25px 22px;
  font: 12px var(--sans);
  color: #3f5a40;
}
.family-band {
  background: #e7edd7;
  border-block: 1px solid var(--line);
  padding: 22px 0;
}
.family-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.family-band p {
  margin: 0;
  font-size: 14px;
}
.family-band strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}
.family-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  overflow: hidden;
}
.family-card .card-body {
  padding: 30px;
}
.family-card h3 {
  font:
    32px/1.18 Georgia,
    serif;
  letter-spacing: -0.035em;
}
.family-card h3 a {
  text-decoration: none;
}
.family-card p {
  color: var(--muted);
}
.family-card .more {
  font-size: 14px;
}
.mini-art {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9efde;
  gap: 18px;
}
.mini-art span {
  background: #fdfbf0;
  border: 2px solid #668064;
  border-radius: 10px;
  padding: 20px;
  font:
    22px Georgia,
    serif;
  transform: rotate(-7deg);
  box-shadow: 5px 6px 0 #c3d0b7;
}
.mini-art.games {
  background: #f2d4bc;
}
.mini-art.games span {
  transform: rotate(6deg);
  background: #fff4dc;
  border-color: #9b6345;
  box-shadow: 5px 6px 0 #dbad8e;
}
.family-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  background: #f1e8c9;
  padding: 40px;
  border-radius: 25px;
}
.family-aside p {
  font-size: 20px;
  line-height: 1.6;
}
.family-aside h2 {
  font-size: 2.6rem;
}
.newsletter {
  background: #e6eddb;
  border: 0;
  border-radius: 26px;
}
.newsletter h2 {
  font-size: 2.8rem;
}
.newsletter .email-row button {
  white-space: nowrap;
}
.prose h2 {
  font-size: 2.2rem;
}
.plan-editor {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf6;
}
.plan-editor label {
  margin-top: 24px;
}
.plan-editor textarea {
  min-height: 90px;
}
.plan-preview {
  padding: 30px;
  border: 2px solid var(--accent);
  border-radius: 20px;
  margin-top: 35px;
  background: #f4f1dd;
}
.plan-preview h2 {
  margin-top: 0;
}
.plan-preview dl {
  margin: 0;
}
.plan-preview dt {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.plan-preview dd {
  margin: 7px 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 19px;
}
.plan-preview dd:empty:after {
  content: "Leave a little space to decide together.";
  color: var(--muted);
  font-style: italic;
  font-size: 16px;
}
.plan-preview .fine {
  margin-top: 25px;
}
.plan-actions {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  flex-wrap: wrap;
}
@media (max-width: 850px) {
  .family-hero {
    grid-template-columns: 1fr;
  }
  .family-art {
    max-width: 480px;
    margin: auto;
  }
  .family-band .wrap {
    flex-wrap: wrap;
  }
  .family-aside {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
}
@media (max-width: 600px) {
  .family-band .wrap {
    display: block;
  }
  .family-band p {
    margin-top: 12px;
  }
  .family-card h3 {
    font-size: 28px;
  }
  .newsletter h2 {
    font-size: 2.25rem;
  }
}
@media print {
  .plan-editor,
  .plan-actions {
    display: none;
  }
  .plan-preview {
    background: white !important;
    border-color: black;
  }
  .plan-preview h2 {
    color: black;
  }
  .plan-preview dt,
  .plan-preview dd {
    color: black;
  }
}

/* Review pass / warm family-room visual system */
:root {
  --paper: #fffaf0;
  --ink: #23443b;
  --muted: #5b746b;
  --accent: #df6849;
  --line: #d7dfcf;
  --tint: #eaf3dc;
  --card: #fffdf7;
  --yellow: #f7d774;
  --blue: #bfe9e5;
  --lavender: #ded8f5;
  --radius: 24px;
}
body { background: var(--paper); color: var(--ink); font-size: 17px; }
.masthead { background: rgba(255, 250, 240, .94); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); }
.masthead .wrap { min-height: 86px; }
.brand { font-size: 22px; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; }
.nav { gap: 10px; }
.nav a { border-radius: 99px; padding: 9px 12px; }
.nav a:hover { background: var(--blue); text-decoration: none; }
.nav a:last-child { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.nav a:last-child:hover { background: var(--accent); border-color: var(--accent); }
.family-hero { position: relative; overflow: visible; padding-top: 100px; padding-bottom: 100px; }
.family-hero:before { content: ""; position: absolute; width: 150px; height: 150px; border: 3px dotted #e5b93f; border-radius: 50%; top: 45px; left: -40px; opacity: .65; }
.family-hero:after { content: "✦"; position: absolute; right: 43%; top: 100px; color: var(--accent); font-size: 30px; transform: rotate(15deg); }
.family-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 6vw, 6.5rem); line-height: .98; letter-spacing: -.06em; max-width: 720px; }
.family-hero h1 em { color: var(--accent); font-style: normal; }
.family-hero .lede { font-size: 19px; color: var(--muted); }
.hero-actions { gap: 14px; }
.hero-actions .button, button { border-radius: 99px; box-shadow: 4px 5px 0 rgba(35, 68, 59, .14); transition: transform .18s, box-shadow .18s, background .18s; }
.hero-actions .button:hover, button:hover { transform: translateY(-3px); box-shadow: 6px 8px 0 rgba(35, 68, 59, .15); }
.hero-actions > a:not(.button) { color: var(--accent); font-weight: 700; }
.family-art { position: relative; border: 2px solid var(--ink); border-radius: 42% 42% 20px 20px; box-shadow: 12px 14px 0 var(--yellow); transform: rotate(2deg); }
.family-art:before { content: "a little room"; position: absolute; z-index: 2; left: 22px; top: 20px; padding: 7px 10px; background: var(--paper); border: 1px solid var(--ink); border-radius: 99px; font: 10px var(--mono); color: var(--ink); transform: rotate(-4deg); }
.family-art figcaption { background: var(--paper); border-top: 1px solid var(--line); }
.family-band { background: var(--ink); color: var(--paper); border: 0; }
.family-band .wrap { padding-top: 8px; padding-bottom: 8px; align-items: center; }
.family-band strong { color: var(--yellow); font-size: 24px; }
.family-band p { color: #d7e6d2; }
.section { padding-top: 100px; padding-bottom: 100px; }
.section-head h2, .family-aside h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.06em; font-size: clamp(2.5rem, 4vw, 4.6rem); }
.section-head p { color: var(--muted); }
.grid { gap: 18px; }
.family-card { border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 7px 8px 0 var(--line); transition: transform .18s, box-shadow .18s; }
.family-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 11px 13px 0 var(--yellow); }
.family-card .card-body { padding: 28px; }
.family-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 32px; letter-spacing: -.04em; }
.mini-art { height: 185px; background: var(--blue); }
.mini-art span { box-shadow: 4px 5px 0 #92cfc8; }
.mini-art.games { background: var(--lavender); }
.mini-art.games span { box-shadow: 4px 5px 0 #b9acd9; }
.family-aside { background: var(--yellow); border: 2px solid var(--ink); box-shadow: 9px 10px 0 var(--accent); }
.family-aside h2 { font-size: 3.2rem; }
.family-aside .button { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.family-aside .button:hover { background: var(--accent); border-color: var(--accent); }
.newsletter { background: var(--blue); border: 2px solid var(--ink); box-shadow: 9px 10px 0 var(--ink); }
.newsletter h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.05em; }
.newsletter .email-row input { border: 2px solid var(--ink); }
.newsletter .email-row button { box-shadow: none; }
.footer { background: #eaf3dc; border-top: 2px solid var(--ink); }
.footer nav a { border-radius: 99px; padding: 5px 7px; }
.footer nav a:hover { background: var(--yellow); text-decoration: none; }
@media (max-width: 850px) { .family-hero { padding-top: 70px; } .family-hero:after { right: 8%; top: 60px; } .family-art { transform: rotate(1deg); margin-top: 16px; } }
@media (max-width: 600px) { .masthead .wrap { min-height: 74px; } .brand { font-size: 19px; } .brand-mark { width: 36px; height: 36px; } .family-hero h1 { font-size: 3.55rem; } .family-hero:before { left: -80px; } .family-aside { box-shadow: 6px 7px 0 var(--accent); } .family-aside h2 { font-size: 2.6rem; } .newsletter { box-shadow: 6px 7px 0 var(--ink); } }
