.experience {
  padding-block: clamp(100px, 12vw, 150px);
  overflow: hidden;
  background: #f7f3ec;
}

.experience__intro { text-align: center; }
.section-kicker {
  margin: 0 0 13px;
  color: #887762;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.experience h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.35;
  letter-spacing: -.055em;
  font-weight: 600;
}
.experience__intro > p:last-child {
  max-width: 660px;
  margin: 19px auto 0;
  color: rgba(36,35,31,.68);
  font-size: 14px;
  line-height: 2.1;
}

.experience__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(42px, 6vw, 76px);
  border-top: 1px solid rgba(36,35,31,.12);
  border-bottom: 1px solid rgba(36,35,31,.12);
}
.stat-card {
  min-height: 242px;
  padding: 34px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid rgba(36,35,31,.12);
}
.stat-card:last-child { border-left: 0; }
.stat-card img {
  width: clamp(52px, 10vw, 76px);
  height: clamp(52px, 10vw, 76px);
  object-fit: contain;
  margin-bottom: auto;
}
.stat-card strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-family: "Alexandria", sans-serif;
  font-size: clamp(22px, 5.5vw, 38px);
  line-height: 1;
  font-weight: 600;
}
.stat-card__num {
  font-family: "DM Mono", monospace;
  direction: ltr;
  display: inline-block;
}
.stat-card strong span:not(.stat-card__num) {
  font-size: .45em;
  color: rgba(36,35,31,.75);
  font-weight: 500;
}
.stat-card p { margin: 8px 0 0; font-size: clamp(11px, 2.8vw, 13px); color: rgba(36,35,31,.68); font-weight: 500; }

@media (max-width: 780px) {
  .experience__intro > p:last-child { font-size: 13px; }
  .experience__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card {
    min-height: auto;
    aspect-ratio: 1.25 / 1;
    padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 20px);
    border-left: 0;
  }
  .stat-card:nth-child(odd) { border-left: 1px solid rgba(36,35,31,.12); }
  .stat-card:nth-child(n+3) { border-top: 1px solid rgba(36,35,31,.12); }
}
