.convergence-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.convergence-product-card {
  min-height: 19rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(169, 191, 163, 0.24);
  border-radius: 1.25rem;
  background: rgba(33, 26, 38, 0.72);
}

.convergence-product-card--warm {
  background:
    radial-gradient(circle at 100% 0, rgba(242, 181, 140, 0.12), transparent 58%),
    rgba(33, 26, 38, 0.82);
}

.convergence-card-number {
  margin: 0 0 4rem;
  color: rgba(169, 191, 163, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.convergence-product-card h3 {
  margin: 0 0 1rem;
  color: var(--cream, #f4eee4);
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 380;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.convergence-product-card p:last-child,
.convergence-method-copy {
  max-width: 42rem;
  margin: 0;
  color: rgba(244, 238, 228, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.convergence-week {
  margin-top: clamp(4rem, 9vw, 8rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(21, 17, 27, 0.16);
}

.convergence-week h3 {
  max-width: 17ch;
  margin: 0.8rem 0 1rem;
  color: #15111b;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 380;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.convergence-theme-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(21, 17, 27, 0.14);
  list-style: none;
  counter-reset: theme;
}

.convergence-theme-list li {
  min-height: 8rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(21, 17, 27, 0.14);
  border-bottom: 1px solid rgba(21, 17, 27, 0.14);
  color: #2e2732;
  counter-increment: theme;
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.convergence-theme-list li::before {
  display: block;
  margin-bottom: 1.2rem;
  color: #667a63;
  content: "0" counter(theme);
  font-family: "Sora", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.convergence-theme-list li:nth-child(4n) {
  border-right: 0;
}

.convergence-method-copy {
  margin-top: 1.5rem;
}

@media (max-width: 760px) {
  .convergence-product-grid {
    grid-template-columns: 1fr;
  }

  .convergence-product-card {
    min-height: 0;
  }

  .convergence-card-number {
    margin-bottom: 2.5rem;
  }

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

  .convergence-theme-list li:nth-child(4n) {
    border-right: 1px solid rgba(21, 17, 27, 0.14);
  }

  .convergence-theme-list li:nth-child(2n) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .convergence-product-card,
  .convergence-theme-list li {
    transition: none !important;
  }
}
