/* 08 — Everyday chores grid (prefix ch-) */

.ch-section {
  margin-top: var(--space-section);
}

.ch-title {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  text-wrap: balance;
}

.ch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.ch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 267px;
  padding: 32px;
  border-radius: var(--r-card-sm);
  background: var(--cream);
  overflow: hidden;
}

.ch-label {
  margin-bottom: 12px;
}

.ch-copy {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 22ch;
}

.ch-icon {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 64px;
  line-height: 1;
}

/* ---- motion & polish ---- */

@media (prefers-reduced-motion: no-preference) {
  .ch-icon {
    transition: transform var(--dur-fast) var(--ease-out);
  }

  .ch-card:hover .ch-icon {
    transform: translateY(-4px) rotate(-3deg);
  }

  /* staggered entrance across the grid */
  .ch-card.reveal:nth-child(2) {
    transition-delay: 60ms;
  }

  .ch-card.reveal:nth-child(3) {
    transition-delay: 120ms;
  }

  .ch-card.reveal:nth-child(4) {
    transition-delay: 180ms;
  }
}

/* ---- responsive ---- */

@media (max-width: 767px) {
  .ch-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .ch-card {
    min-height: 220px;
    padding: 28px;
  }

  .ch-icon {
    right: 28px;
    bottom: 28px;
    font-size: 56px;
  }
}

/* percent watermark in place of pictorial icons */
.ch-icon--mark {
  font-weight: 600;
  color: var(--line);
}
