/* ── Week 7 Reflection Section ── */
.reflection-section {
  padding: 6rem clamp(1.5rem, 5vw, 4rem) 8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.reflection-pull {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 2rem;
  margin: 0 0 4rem;
}
.reflection-pull em {
  font-style: normal;
  color: #fff;
}
.reflection-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.reflection-col p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  margin-bottom: 1.1rem;
}
.reflection-col p:last-child { margin-bottom: 0; }
.reflection-col strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.reflection-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 4rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5rem;
}
.skill-cell {
  padding: 1.4rem 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.skill-cell-num {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.2);
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.skill-cell-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.35;
  display: block;
}
.reflection-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5rem;
}
.reflection-stat {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.reflection-stat:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
}
.closing-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.closing-quote em {
  color: rgba(255,255,255,0.82);
  font-style: normal;
}
@media (max-width: 720px) {
  .reflection-cols { grid-template-columns: 1fr; gap: 2rem; }
  .reflection-stat-row { grid-template-columns: 1fr; }
  .reflection-stat { border-right: none; }
}
