/* ===== Design tokens ===== */
:root{
  --ink:#0a0a08;
  --ink-soft:#141410;
  --paper:#f3efe4;
  --paper-dim:#e7e2d3;
  --acid:#a6f35c;      /* musician accent */
  --violet:#a468e8;    /* IT professional accent */
  --amber:#e0b84c;     /* artist accent */
  --accent:var(--violet);
}

*{margin:0;padding:0;box-sizing:border-box;}

html{ scroll-behavior:smooth; }

body{
  background:var(--ink);
  color:var(--paper);
  font-family:'Space Grotesk', sans-serif;
  min-height:100dvh;
  position:relative;
}

body::after{
  content:'';
  position:fixed;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.035) 1px, transparent 0);
  background-size:3px 3px;
  pointer-events:none;
  mix-blend-mode:overlay;
  z-index:50;
}

a{ color:inherit; }

/* ===== eyebrow / status pill ===== */
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--accent);
  display:flex;
  align-items:center;
  gap:10px;
}

.eyebrow::before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 8px 2px currentColor;
  animation:pulse 1.8s ease-in-out infinite;
  flex-shrink:0;
}

@keyframes pulse{
  0%,100%{ opacity:1; }
  50%{ opacity:.35; }
}

/* ===== back link ===== */
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(243,239,228,.6);
  transition:color .25s ease;
}

.back-link:hover{ color:var(--paper); }

.back-link svg{
  width:13px;
  height:13px;
  transition:transform .3s cubic-bezier(.16,1,.3,1);
}

.back-link:hover svg{ transform:translateX(-3px); }

/* ===== pass / pill button (used on home + subpages) ===== */
a.pass{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:var(--paper);
  border-radius:999px;
  padding:10px 20px 10px 14px;
  box-shadow:0 14px 26px -12px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.06);
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}

a.pass:hover{
  /*transform:translateY(-3px);*/
  box-shadow:0 18px 32px -12px rgba(0,0,0,.65), 0 0 0 1px rgba(0,0,0,.06);
}

.pass-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  flex-shrink:0;
}

.pass-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.pass-tag{
  font-family:'IBM Plex Mono', monospace;
  font-size:8.5px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
}

.pass-title{
  font-family:'Space Grotesk', sans-serif;
  font-weight:600;
  font-size:16px;
  color:var(--ink);
  display:flex;
  align-items:center;
  gap:6px;
}

.pass-title svg{
  width:13px;
  height:13px;
  flex-shrink:0;
  /*transition:transform .35s cubic-bezier(.16,1,.3,1);*/
}

/*a.pass:hover .pass-title svg{ transform:translateX(3px); }*/

/* ===== subpage layout ===== */
.page-wrap{
  max-width:960px;
  margin:0 auto;
  padding:32px 24px 90px;
}

.page-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0 40px;
}

.hero{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:44px;
  align-items:end;
  padding-bottom:44px;
  border-bottom:1px solid rgba(243,239,228,.12);
  margin-bottom:44px;
}

.hero-photo{
  width:100%;
  aspect-ratio:4/5;
  border-radius:6px;
  overflow:hidden;
  background:var(--ink-soft);
  border:1px solid rgba(243,239,228,.1);
  box-shadow:0 24px 50px -18px rgba(0,0,0,.7);
}

.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.placeholder-photo{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.03), transparent 60%),
    var(--ink-soft);
}

.placeholder-photo .badge{
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--accent);
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Anton', sans-serif;
  font-size:22px;
  letter-spacing:.02em;
}

.placeholder-photo .hint{
  font-family:'IBM Plex Mono', monospace;
  font-size:9.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(243,239,228,.4);
  text-align:center;
  padding:0 20px;
}

.hero-copy h1{
  font-family:'Anton', sans-serif;
  font-weight:400;
  font-size:clamp(40px, 6vw, 68px);
  line-height:.92;
  text-transform:uppercase;
  color:var(--paper);
  margin-top:14px;
}

.hero-copy .role{
  margin-top:12px;
  font-family:'Space Grotesk', sans-serif;
  font-weight:500;
  font-size:15px;
  color:rgba(243,239,228,.7);
}

.hero-copy .role b{ color:var(--accent); font-weight:600; }

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
}

.hero-tags span{
  font-family:'IBM Plex Mono', monospace;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  border:1px solid currentColor;
  border-radius:999px;
  padding:5px 11px;
}

/* content sections */
.section{ margin-bottom:44px; }

.section h2{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:14px;
}

.section h2::after{
  content:'';
  flex:1;
  height:1px;
  background:rgba(243,239,228,.14);
}

.section p{
  font-size:15px;
  line-height:1.7;
  color:rgba(243,239,228,.78);
  max-width:640px;
}

.entry{
  padding:20px 0;
  border-bottom:1px solid rgba(243,239,228,.08);
  display:grid;
  grid-template-columns:150px 1fr;
  gap:20px;
}

.entry:last-child{ border-bottom:none; }

.entry .when{
  font-family:'IBM Plex Mono', monospace;
  font-size:10.5px;
  letter-spacing:.06em;
  color:rgba(243,239,228,.45);
  text-transform:uppercase;
  padding-top:2px;
}

.entry h3{
  font-family:'Space Grotesk', sans-serif;
  font-size:17px;
  font-weight:600;
  color:var(--paper);
}

.entry .org{
  font-size:13px;
  color:var(--accent);
  margin-top:2px;
  font-weight:500;
}

.entry p{
  margin-top:8px;
  font-size:14px;
  line-height:1.65;
  color:rgba(243,239,228,.68);
}

.skills-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.skills-grid span{
  font-family:'IBM Plex Mono', monospace;
  font-size:11.5px;
  letter-spacing:.04em;
  color:var(--paper);
  background:rgba(243,239,228,.06);
  border:1px solid rgba(243,239,228,.14);
  border-radius:8px;
  padding:8px 14px;
}

.contact-row{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}

.contact-row .item{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.contact-row .label{
  font-family:'IBM Plex Mono', monospace;
  font-size:9.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(243,239,228,.4);
}

.contact-row .value{
  font-size:14px;
  color:var(--paper);
  font-weight:500;
}

@media (max-width:680px){
  .hero{
    grid-template-columns:1fr;
  }
  .hero-photo{ max-width:220px; }
  .entry{
    grid-template-columns:1fr;
    gap:6px;
  }
}

/* Resume content additions */
.skill-group{margin-bottom:24px;}
.skill-group:last-child{margin-bottom:0;}
.skill-group h3{font-family:'IBM Plex Mono',monospace;font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:rgba(243,239,228,.55);margin-bottom:10px;}
.skill-group p{max-width:760px;}
.entry .tech{margin-top:7px;font-size:12px;line-height:1.55;color:rgba(243,239,228,.52);}
.entry .tech strong{color:var(--accent);font-weight:500;}
