/* ── Experience page body ── */
body {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  cursor: none;
}

/* ── Section label override for experience (adds margin-bottom) ── */
.section-label {
  margin-bottom: 1rem;
}

/* ── Section label wrap (character pop-out) ── */
.section-label-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.section-label-wrap .section-label {
  margin-bottom: 0;
}
.section-peek {
  position: absolute;
  right: 20px;
  bottom: 2px;
  height: clamp(160px, 28vw, 320px);
  width: auto;
  z-index: 1;
  pointer-events: none;
}

/* ── Experience body container ── */
.exp-body {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 6vw, 5rem) 1.5rem;
}

/* ── Experience entries ── */
.exp-list { display: flex; flex-direction: column; gap: 0; margin-bottom: var(--gap); }

.exp-entry {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--sand);
}
@media (max-width: 680px) { .exp-entry { grid-template-columns: 1fr; gap: 1rem; } }

.exp-left { padding-top: 0.2rem; }

.exp-company {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.4rem; font-weight: 300; color: var(--primary);
  margin-bottom: 0.3rem; line-height: 1.2;
}
.exp-period {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); margin-top: 0.5rem;
}

.exp-title {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--soft); margin-bottom: 1rem;
}
.exp-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.exp-bullets li {
  font-size: 0.875rem; color: var(--soft); line-height: 1.75;
  padding-left: 1.2rem; position: relative;
}
.exp-bullets li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--taupe); font-size: 0.75rem;
}

/* ── Skills ── */
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; margin-bottom: var(--gap);
}
@media (max-width: 900px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .skills-grid { grid-template-columns: 1fr; } }

.skill-group-title {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; font-weight: 300; color: var(--ink);
  margin-bottom: 1rem;
}
.skill-sub {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); margin: 1rem 0 0.4rem;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.skill-tag {
  font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--sage); color: var(--soft);
  border-radius: 2px;
}

/* ── Education ── */
.edu-list { display: flex; flex-direction: column; gap: 0; margin-bottom: var(--gap); }
.edu-entry {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--sand);
}
@media (max-width: 680px) { .edu-entry { grid-template-columns: 1fr; } }
.edu-degree {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; font-weight: 300; color: var(--primary); line-height: 1.3;
}
.edu-school {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--soft); margin-top: 0.5rem;
}
.edu-detail { font-size: 0.875rem; color: var(--ink); line-height: 1.8; }
.edu-gpa {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-body); font-style: normal;
  font-weight: 700; font-size: 1rem; color: var(--ink);
}

/* ── Honors ── */
.honors-block { padding: 1rem 0 0; }
.honors-text { font-size: 0.875rem; color: var(--soft); line-height: 2; }

/* ── Resume download ── */
.resume-download-wrap {
  display: flex; justify-content: flex-start;
  padding: 0.75rem clamp(1.5rem, 6vw, 5rem) 2.5rem;
}
@media (max-width: 540px) { .section-peek { display: none; } }

.resume-dl-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  background: var(--sage);
  padding: 0.85rem 1.75rem;
  transition: opacity 0.2s;
}
.resume-dl-btn:hover { opacity: 0.8; }

/* ── Extra reveal delay ── */
.reveal-delay-4 { transition-delay: 0.4s; }
