.skills {
  padding: 120px 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.skills-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Skill Facts label card ── */
.nf-label {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 20px 22px;
  transform: rotate(-1.2deg);
}
.nf-label h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 0.9;
  border-bottom: 8px solid var(--ink);
  padding-bottom: 6px;
}
.nf-serv {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
}
.nf-serv.bold { font-weight: 700; }
.nf-thick { height: 8px; background: var(--ink); margin: 4px 0; }

.nf-rows { font-family: var(--font-body); }
.nf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.nf-row .l { font-weight: 700; }
.nf-row .bar {
  flex: 1;
  height: 7px;
  background: var(--cream-2);
  border-radius: 6px;
  margin: 0 8px;
  overflow: hidden;
}
.nf-row .bar i {
  display: block;
  height: 100%;
  background: var(--red);
  border-radius: 6px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.nf-row .v {
  font-family: var(--font-mono);
  font-size: 12px;
  min-width: 38px;
  text-align: right;
}
.nf-foot {
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.4;
}

/* ── Ingredients side ── */
.nf-side h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 14px;
}
.nf-side .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 560px;
}
.nf-side .lead b { color: var(--ink); font-weight: 600; }
.nf-ing { display: flex; flex-wrap: wrap; gap: 10px; }
.ing {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--paper);
  border: 2px solid var(--ink);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  opacity: 0;
  transform: translateY(12px);
}
.ing.show { opacity: 1; transform: translateY(0); }
.ing:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px) rotate(-2deg);
}

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