.how {
  padding: 96px 0 64px;
}

.how__header {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.how__header h2 {
  font-size: clamp(28px, 3.6vw, 36px);
  font-weight: 700;
}

.how__header p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

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

.how__card {
  border-radius: var(--r-lg);
  padding: 40px 36px 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.how__card--mint { background: var(--pastel-mint); }
.how__card--sand { background: var(--pastel-sand); }

.how__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.how__card h3 {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 700;
  max-width: 300px;
}

.how__card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 300px;
}

.how__art {
  margin-top: auto;
  position: relative;
  height: 140px;
}

.how__seat {
  position: absolute;
  bottom: -30px;
  width: 110px;
  height: 130px;
  border-radius: 20px 20px 0 0;
}

.how__seat--a { left: 30px; background: #E8926B; }
.how__seat--b { left: 130px; background: #C0523C; }
.how__plus {
  position: absolute;
  bottom: 60px;
  left: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--chip-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.how__art--trio .how__seat--c { left: 10px; background: #5A6FE0; height: 120px; }
.how__art--trio .how__seat--d { left: 100px; background: #E8DCC8; height: 140px; z-index: 2; }
.how__art--trio .how__seat--e { left: 190px; background: #C0523C; height: 120px; }

.how__video {
  margin: 48px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border: none;
  border-radius: var(--r-pill);
  transition: transform 0.15s ease;
}

.how__video:hover { transform: translateY(-2px); }

.how__play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

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