.family-section {
  background: var(--paper);
}
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.family-lede {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.family-lede em {
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}
.family-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.family-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.family-points li:last-child { border-bottom: none; }
.fp-mark {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.family-points strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
}
.family-points p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
}

/* Family tree card */
.family-tree {
  background: white;
  padding: 32px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}
.ft-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ft-lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.ft-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
}
.ft-svg { width: 100%; height: auto; margin: 8px 0 20px; }
.ft-note {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.75;
  padding: 16px;
  background: var(--paper-2);
  border-left: 2px solid var(--gold);
}
.ft-note em {
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 900px) {
  .family-grid { grid-template-columns: 1fr; gap: 48px; }
}
