/* ═══════════════════════════════════════════════════════════════════════
   HONEY COMB VISUALS - Resume Page
   Broadcast test card that happens to contain resume information.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Resume Hero ──────────────────────────────────────────────────────── */
.resume-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(80px + var(--sp-16)) var(--sp-8) var(--sp-12);
  background: var(--color-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

/* Vertical SMPTE bars - right strip */
.resume-hero-bars {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.resume-hero-bars .bar { flex: 1; }

/* Full-width SMPTE bars at the very bottom */
.resume-hero-bottom-bars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  display: flex;
  pointer-events: none;
}
.resume-hero-bottom-bars .bar { flex: 1; }

/* Grid texture overlay */
.resume-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(from var(--gold-raw) l c h / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, oklch(from var(--gold-raw) l c h / 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.resume-hero-inner {
  position: relative;
  z-index: 4;
  max-width: var(--content-default);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: var(--sp-8);
}

.resume-hero-text {}

.resume-hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.resume-hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 1.2rem + 5vw, 6.5rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.resume-hero-name em {
  font-style: italic;
  color: var(--gold);
}

.resume-hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}
.resume-hero-contact a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-ui);
}
.resume-hero-contact a:hover { color: var(--gold); }
.resume-hero-contact .sep {
  color: var(--color-text-faint);
}

.resume-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Download button */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background var(--t-ui), color var(--t-ui), box-shadow var(--t-ui);
  white-space: nowrap;
}
.btn-download:hover {
  background: var(--gold);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}
.btn-download svg {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
}

.resume-page-id {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(from var(--gold-raw) l c h / 0.3);
  white-space: nowrap;
}

/* ── Resume Layout ────────────────────────────────────────────────────── */
.resume-body {
  background: var(--color-bg);
  padding: var(--sp-16) 0 var(--sp-32);
}

.resume-body-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-12);
  align-items: start;
}

/* ── Resume Section shared ────────────────────────────────────────────── */
.res-section {
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--color-border);
}
.res-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.res-section-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.res-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ── Headline / Summary ───────────────────────────────────────────────── */
.res-headline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 72ch;
}

/* ── Selected Credits ─────────────────────────────────────────────────── */
.credits-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--color-border);
}

.credit-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: var(--sp-4) var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface);
  align-items: baseline;
  transition: background var(--t-ui);
  position: relative;
}
.credit-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background var(--t-ui);
}
.credit-row:hover { background: var(--color-surface-2); }
.credit-row:hover::before { background: oklch(from var(--gold-raw) l c h / 0.4); }

.credit-row--featured {
  background: oklch(from var(--gold-raw) l c h / 0.04);
}
.credit-row--featured::before { background: var(--gold); }
.credit-row--featured:hover { background: oklch(from var(--gold-raw) l c h / 0.07); }

.cr-num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  padding-top: 2px;
  align-self: start;
}
.credit-row--featured .cr-num { color: oklch(from var(--gold-raw) l c h / 0.6); }

.cr-body {}
.cr-event {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
  max-width: none;
}
.credit-row--featured .cr-event { color: var(--gold); }
.cr-role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 2px;
  max-width: none;
}

.cr-badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
  align-self: start;
  margin-top: 2px;
}
.cr-badge--gold {
  color: var(--gold);
  border-color: oklch(from var(--gold-raw) l c h / 0.3);
  background: oklch(from var(--gold-raw) l c h / 0.06);
}

/* ── Professional Experience ──────────────────────────────────────────── */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.exp-item {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 0 var(--sp-6);
  position: relative;
}

.exp-track {
  width: 4px;
  background: var(--color-border);
  border-radius: 2px;
  position: relative;
  margin-top: 4px;
}
.exp-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}
.exp-item--ongoing .exp-track::before {
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), oklch(from var(--gold-raw) l c h / 0.2));
}

.exp-content {}

.exp-header {
  margin-bottom: var(--sp-3);
}
.exp-company {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
  max-width: none;
}
.exp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-1);
}
.exp-role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  max-width: none;
}
.exp-period {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
  max-width: none;
}
.exp-period-dot {
  color: var(--color-text-faint);
  font-size: var(--text-xs);
}

.exp-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}
.exp-desc + .exp-desc {
  margin-top: var(--sp-2);
}

/* ── Artist + Festival Credits inline ────────────────────────────────── */
.credits-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.credit-pill {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: color var(--t-ui), border-color var(--t-ui);
  white-space: nowrap;
  max-width: none;
}
.credit-pill:hover {
  color: var(--color-text);
  border-color: oklch(from var(--gold-raw) l c h / 0.3);
}

/* ── Sidebar ──────────────────────────────────────────────────────────── */
.resume-sidebar {
  position: sticky;
  top: calc(80px + var(--sp-8));
}

/* Test card sidebar block */
.sidebar-block {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  margin-bottom: var(--sp-6);
  position: relative;
  overflow: hidden;
}

.sidebar-block-bars {
  height: 3px;
  display: flex;
}
.sidebar-block-bars .bar { flex: 1; }

.sidebar-block-inner {
  padding: var(--sp-5) var(--sp-5);
}

.sidebar-block-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.sidebar-block-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Corner marks on sidebar blocks */
.sidebar-block-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: oklch(from var(--gold-raw) l c h / 0.2);
  border-style: solid;
}
.sidebar-block-corner.bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }
.sidebar-block-corner.br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

/* Skills tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.skill-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 2px;
  line-height: 1.4;
  transition: color var(--t-ui), border-color var(--t-ui);
  max-width: none;
}
.skill-tag:hover {
  color: var(--color-text);
  border-color: oklch(from var(--gold-raw) l c h / 0.3);
}
.skill-tag--highlight {
  color: var(--gold);
  border-color: oklch(from var(--gold-raw) l c h / 0.25);
  background: oklch(from var(--gold-raw) l c h / 0.05);
}

/* Education block */
.edu-item {
  margin-bottom: var(--sp-4);
}
.edu-item:last-child { margin-bottom: 0; }
.edu-degree {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  max-width: none;
}
.edu-school {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 2px;
  max-width: none;
}
.edu-year {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
  max-width: none;
}

/* Languages block */
.lang-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.lang-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.lang-item:last-child { border-bottom: none; padding-bottom: 0; }
.lang-name {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text);
  max-width: none;
}
.lang-level {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  max-width: none;
}
.lang-level--native { color: var(--gold); }

/* Signal info block */
.signal-info {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(from var(--gold-raw) l c h / 0.3);
  line-height: 2;
}
.signal-info strong {
  font-weight: 600;
  color: oklch(from var(--gold-raw) l c h / 0.5);
}

/* Contact quick-links in sidebar */
.contact-quick {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.cq-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.cq-row:last-child { border-bottom: none; padding-bottom: 0; }
.cq-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  max-width: none;
}
.cq-value {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-ui);
  max-width: none;
}
.cq-value:hover { color: var(--gold); }

/* ── Waveform decoration ──────────────────────────────────────────────── */
.res-waveform {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
  opacity: 0.25;
}
.res-waveform span {
  display: block;
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
  animation: wavebounce var(--dur, 1.2s) ease-in-out infinite alternate;
}
@keyframes wavebounce {
  from { transform: scaleY(0.2); }
  to   { transform: scaleY(1); }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .resume-body-inner {
    grid-template-columns: 1fr;
  }
  .resume-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
  .sidebar-block {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .resume-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .resume-hero-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .credit-row {
    grid-template-columns: 24px 1fr;
  }
  .cr-badge { display: none; }
  .resume-sidebar {
    grid-template-columns: 1fr;
  }
  .exp-item {
    grid-template-columns: 3px 1fr;
    gap: 0 var(--sp-4);
  }
}
