.people-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.people-grid fieldset,
.field-pair,
.field-pair label {
  min-width: 0;
}

.hero-copy h1 {
  line-height: 1.04;
}

.hero-copy > p:not(.eyebrow) {
  margin-top: 22px;
}

.connection-profile {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.profile-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.profile-heading span {
  color: var(--muted);
  font-size: 11px;
}

.profile-row {
  display: grid;
  grid-template-columns: 128px 1fr 86px;
  gap: 10px;
  align-items: center;
  margin-top: 11px;
  font-size: 11px;
}

.profile-row > span {
  color: #d8cfe1;
}

.profile-row i {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.profile-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--pink));
}

.profile-row strong {
  color: var(--gold);
  font-size: 10px;
  text-align: right;
}

.guidance-section {
  padding: 90px clamp(24px, 7vw, 110px);
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guidance-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(36, 20, 51, 0.9), rgba(19, 11, 29, 0.9));
}

.strength-card {
  border-color: rgba(112, 217, 193, 0.27);
}

.growth-card {
  border-color: rgba(255, 120, 146, 0.25);
}

.guidance-label {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guidance-card h3 {
  margin: 6px 0 22px;
  font-family: "Fraunces", serif;
  font-size: 30px;
}

.guidance-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.guidance-item > span {
  color: #f2e8fb;
  font-weight: 700;
}

.guidance-item p,
.guidance-item small {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.guidance-item small {
  padding-left: 12px;
  border-left: 2px solid rgba(255, 132, 183, 0.45);
  color: #d9cedf;
}

.theme-summary {
  min-height: 82px;
  color: #d8cfe2;
  line-height: 1.65;
}

.try-this {
  margin: 18px 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(184, 139, 255, 0.08);
}

.try-this span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.try-this p {
  margin: 7px 0 0;
  color: #eee5f4;
  line-height: 1.55;
}

.theme-card details {
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

.theme-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--violet);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.theme-card summary span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(184, 139, 255, 0.13);
}

.theme-card details:not([open]) ul {
  display: none;
}

@media (max-width: 1000px) {
  .guidance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .people-grid {
    grid-template-columns: 1fr;
  }

  .guidance-section {
    padding: 64px 20px;
  }

  .profile-row {
    grid-template-columns: 108px 1fr;
  }

  .profile-row strong {
    grid-column: 2;
    text-align: left;
  }
}

@media print {
  .guidance-section {
    padding: 28px;
  }

  .guidance-card,
  .try-this,
  .connection-profile {
    background: #fff;
    border-color: #ddd;
  }
}
